// ==UserScript== // @name Zhihu.com Dark Mode // @name:zh-CN 知乎黑暗模式 // @name:zh-TW 知乎黑暗模式 // @namespace https://www.zhihu.com/ // @version 0.3 // @description Enable Zhihu.com Dark Mode // @description:zh-CN 开启知乎黑暗模式 // @description:zh-TW 开启知乎黑暗模式 // @author 老蛤 // @match *://*.zhihu.com/* // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; if (location.host !== 'link.zhihu.com' && document.querySelector('html').getAttribute('data-theme') !== 'dark') { document.querySelector('html').setAttribute('data-theme', 'dark'); location.reload(); } })();