您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Inside Game tracing removal
// ==UserScript== // @name TW Data Tracer Stopper // @namespace AntiGameDataTracingTheWest // @version rev A.04 // @description Inside Game tracing removal // @author Ercho // @include https://*.the-west.*/game.php* // @icon https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRZamT6v3aOo2WjZHZ8-VgIuK_9vv0NOBklUQ&s // @grant none // @license license-MIT // ==/UserScript== (function() { 'use strict'; let d = setInterval(function(){ Chat.Request.VarDec = function (){}; GrafanaFaroWebSdk.browserMeta = {}; GrafanaFaroWebSdk.faro = {}; GrafanaFaroWebTracing.TracingInstrumentation = {}; if(faro) for(key in faro) faro[key] = {} },100); setTimeout(function(){clearInterval(d)},5000); })();