// ==UserScript== // @name linux.do - 隐藏用户头衔 // @namespace https://github.com/utags // @version 1.0.3 // @description 隐藏用户头衔,太晃眼了 // @author Pipecraft // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*.linux.do/* // @match *://*.idcflare.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .user-title { display: none !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); } })();