Zhihu Dark Mode Auto-Enable

Automatically enable dark mode on Zhihu by adding ?theme=dark to the URL

// ==UserScript==
// @name         Zhihu Dark Mode Auto-Enable
// @namespace    https://www.zhihu.com/
// @version      1.0
// @description  Automatically enable dark mode on Zhihu by adding ?theme=dark to the URL
// @author       wbw625
// @match        *://*.zhihu.com/*
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    if (!window.location.search.includes("theme=dark")) {
        if (window.location.search) {
            window.location.href = window.location.href + "&theme=dark";
        } else {
            window.location.href = window.location.href + "?theme=dark";
        }
    }
    
})();

QingJ © 2025

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