// ==UserScript== // @name 站长工具去广告js屏蔽版 // @author www.wdja.net // @version 0.0.1 // @description 站长工具平台去广告 // @match https://*.chinaz.com/* // @run-at document-idle // @namespace https://greasyfork.org/zh-CN/scripts/479707 // @require https://code.jquery.com/jquery-2.1.4.min.js // @license MIT // @downloadURL none // ==/UserScript== (function(){ setTimeout( function() { $("#view").each(function(){ $(this).hide(); }); $("#centerTxt").each(function(){ $(this).hide(); }); $("#navAfter").each(function(){ $(this).hide(); }); $("#contentImg").each(function(){ $(this).hide(); }); $("#toolLeftImg").each(function(){ $(this).hide(); }); $(".backtoTop").each(function(){ $(this).hide(); }); $(".wrapperTopBtm").each(function(){ $(this).hide(); }); console.log("ok"); } ,2000); //延迟2秒执行 })();