// ==UserScript== // @name 知乎专栏手机阅读 // @namespace https://greasyfork.org/users/982752 // @version 0.0.1.20221113103536 // @description 知乎专栏手机阅读222 // @author h // @grant GM_addStyle // @run-at document-start // @match *://*.zhuanlan.zhihu.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` div.ContentItem-actions { background-color: #333; } div.Post-content { background: black; color: #bba; } div.ColumnPageHeader { background-color: black; color: #bba; } div.css-1ygdre8 { color: #bba; } `; 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); } })();