您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Blocks loading of JavaScript files containing "devtools" or "test" in their names
当前为
- // ==UserScript==
- // @name Anti Devtools Detector
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Blocks loading of JavaScript files containing "devtools" or "test" in their names
- // @author Your name
- // @match *://*/*
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- // Intercept requests and block those containing "devtools" or "test" in their names
- const originalFetch = window.fetch;
- window.fetch = function(resource, init) {
- const url = resource instanceof Request ? resource.url : resource;
- if (url.includes("devtools") || url.includes("test")) {
- console.log("Blocked request:", url);
- return new Promise((resolve, reject) => {
- reject(new Error("Blocked by Tampermonkey"));
- });
- } else {
- return originalFetch.apply(this, arguments);
- }
- };
- })();