知乎黑暗模式

开启知乎黑暗模式

目前为 2020-12-14 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Zhihu.com Dark Mode
  3. // @name:zh-CN 知乎黑暗模式
  4. // @name:zh-TW 知乎黑暗模式
  5. // @namespace https://www.zhihu.com/
  6. // @version 0.3
  7. // @description Enable Zhihu.com Dark Mode
  8. // @description:zh-CN 开启知乎黑暗模式
  9. // @description:zh-TW 开启知乎黑暗模式
  10. // @author 老蛤
  11. // @match *://*.zhihu.com/*
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15.  
  16. (function() {
  17. 'use strict';
  18.  
  19. if (location.host !== 'link.zhihu.com' && document.querySelector('html').getAttribute('data-theme') !== 'dark') {
  20. document.querySelector('html').setAttribute('data-theme', 'dark');
  21. location.reload();
  22. }
  23. })();