// ==UserScript== // @name 今日热榜优化 // @namespace https://www.runningcheese.com // @version 0.1 // @description 今日热榜优化,宽度减少,去除广告等。 // @author RunningCheese // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*.tophub.today/* // @downloadURL none // ==/UserScript== (function() { let css = ` /*宽度调整*/ body{max-width:80%;margin:auto;} /*字体调整*/ .mp .aa .tt, .cc-cd-cb .cc-cd-cb-l .cc-cd-cb-ll{font-size:14px;} /*内容隐藏*/ .cq{display:none;} .alert-warning{display:none;} .bb-TT{display:none;} `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();