DarkReader

turn reading articles in a monochrome pleasure for your eyes

// ==UserScript==
// @name         DarkReader
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  turn reading articles in a monochrome pleasure for your eyes
// @author       Tim L. Greller
// @match        *://*/*
// @grant        none
// ==/UserScript==

window.addEventListener('load', function(){
    document.querySelectorAll("*").forEach(function(_){
        _.style.color = "#c3c0b8";
        _.style.backgroundColor = "#1d1511";
    });
});

QingJ © 2025

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