在空白页面的控制台运行解决重定向再复制url到网页
//解决重定向
bash
(() => {
window.onbeforeunload= ()=>{
debugger;
return false;
}
})();
//构造方法无限debugger
bash
(() => {
Function.prototype.constructor = Function.prototype.constructor;
Function.prototype.constructor = function(){
if(arguments && typeof arguments[0] === 'string'){
if ("debugger" === arguments[0]){
return null
}
return Function.prototype.constructor_.apply(this,arguments);
}
}
})();
//药监局过debugger 在网站第二个debugger加载之前运行
var _constructor = constructor;
Function.prototype.constructor = function(s) {
if (s == "debugger") {
console.log(s);
return null;
}
return _constructor(s);
}