知乎黑暗模式

开启知乎黑暗模式

目前为 2021-01-11 提交的版本。查看 最新版本

  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.4
  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. const url = new URL(location.href);
  21. const params = new URLSearchParams(url.search);
  22. params.set('theme', 'dark');
  23. url.search = params.toLocaleString();
  24. location.href = url.href;
  25. }
  26. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址