Anti Debug Protection

Disable debug protection process

目前為 2022-01-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name          Anti Debug Protection
// @namespace     https://tampermonkey.net/
// @version       1.0.0
// @description   Disable debug protection process
// @license       MIT
// @icon          https://diep.io/favicon-96x96.png
// @author        PonyoLab
// @match         *://diep.io/*
// @grant         unsafeWindow
// @run-at        document-start
// ==/UserScript==

unsafeWindow.Function.prototype.constructor = new Proxy(unsafeWindow.Function.prototype.constructor, {
	apply: function (target, thisArg, args) {
		if (args[0] === "debugger") {
			args[0] = "";
		}
		return target.apply(thisArg, args);
	}
});

QingJ © 2025

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