Greasy Fork is available in English.

StackOverflow Always Dark Theme

Enables Dark Theme Forever.

目前為 2020-08-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name          StackOverflow Always Dark Theme
// @description   Enables Dark Theme Forever.
// @author        nullgemm
// @version       0.1.1
// @grant         none
// @match         *://stackoverflow.com/*
// @run-at        document-end
// @icon          https://stackoverflow.com/favicon.ico
// @namespace     https://greasyfork.org/en/users/322108-nullgemm
// ==/UserScript==

document.getElementsByTagName("body")[0].classList.add("theme-dark");
document.getElementsByClassName("theme-selector")[0].style.display = "none";