Inside Game tracing removal
当前为
// ==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);
});
})();