破解无限debugger

用于破解网页无限debugger

// ==UserScript==
// @name         破解无限debugger
// @namespace    https://github.com/qianjiachun
// @version      0.0.1
// @description  用于破解网页无限debugger
// @author       小淳
// @match        *://*/*
// @include      *://*/*
// @run-at       document-start
// @license MIT
// ==/UserScript==

var constructorHook = constructor;
Function.prototype.constructor = function(s) {
    if (s == "debugger") {
        return function() {}
    }
    return constructorHook(s);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址