// ==UserScript== // @name linux.do - 自定义 timeline 宽度 // @namespace https://github.com/utags // @version 1.0.0 // @description 自定义 timeline 宽度。 // @author Pipecraft // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*.linux.do/* // @match *://*.idcflare.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .timeline-scrollarea-wrapper { max-width: 150px !important; } `; 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); } })();