无限debugger的解决办法
永不停留
需要跳过的位置,右键:Never pause here
Reres替换文件
插件自行扶梯安装
本地文件需要添加前缀:file:///
,并允许插件访问本地文件
HOOK
var aaa = Function.prototype.constructor
Function.prototype.constructor = function (x){
if (x!="debugger"){
return aaa(x);
}else{
return function(){};
}
}
文章目录
关闭
共有 0 条评论