TW Data Tracer Stopper

Inside Game tracing removal

当前为 2025-04-12 提交的版本,查看 最新版本

// ==UserScript==
// @name         TW Data Tracer Stopper
// @namespace    AntiGameDataTracingTheWest
// @version      rev A.001
// @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';

    $(document).read(function(){
    setInterval(function(){
        if(window.faro)
            for(key in window.faro)
                window.faro[key] = {}
    },5000);
    });
})();