// ==UserScript== // @name linux.do - 隐藏首页右侧热门话题 // @namespace https://github.com/utags // @version 1.0.0 // @description A new userstyle // @author Pipecraft // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*.linux.do/* // @match *://*.idcflare.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .tc-right-sidebar { display: none; } @media screen and (min-width: 767px) { .tc-right-sidebar + #list-area { width: -webkit-fill-available; } } `; 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); } })();