开启知乎黑暗模式
当前为
// ==UserScript==
// @name Zhihu.com Dark Mode
// @name:zh-CN 知乎黑暗模式
// @name:zh-TW 知乎黑暗模式
// @namespace https://www.zhihu.com/
// @version 0.4
// @description Enable Zhihu.com Dark Mode
// @description:zh-CN 开启知乎黑暗模式
// @description:zh-TW 开启知乎黑暗模式
// @author 老蛤
// @match *://*.zhihu.com/*
// @license MIT
// ==/UserScript==
(function() {
'use strict';
if (location.host !== 'link.zhihu.com' && document.querySelector('html').getAttribute('data-theme') !== 'dark') {
const url = new URL(location.href);
const params = new URLSearchParams(url.search);
params.set('theme', 'dark');
url.search = params.toLocaleString();
location.href = url.href;
}
})();