// ==UserScript== // @name 【伟哥自用】某堂去广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 某堂去广告 // @author You // @match https://sehuatang.org/forum.php?mod=viewthread* // @match https://sehuatang.org/thread* // @icon https://www.google.com/s2/favicons?sz=64&domain=sehuatang.org // @grant none // ==/UserScript== (function() { 'use strict';//临时用用 document.querySelector("div.show-text2.pad-tb-10").style="display:none" document.querySelectorAll(".show-info").forEach(function(a){a.parentNode.style="display:none"}) document.querySelectorAll(".show-main").forEach(function(a){a.style="display:none"}) document.querySelectorAll(".show-info").forEach(function(a){a.style="display:none"}) document.querySelectorAll(".js-randomBg").forEach(function(a){a.style="display:none"}) })();