Dark Mode

Enable Dark Mode for all websites

// ==UserScript==
// @name         Dark Mode
// @version      0.1
// @description  Enable Dark Mode for all websites
// @author       RaghavP
// @match        *://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @namespace https://gf.qytechs.cn/users/807263
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function() {
        //invert the filter
        document.querySelector('html').style.filter = 'invert(1)';
    };
})();

QingJ © 2025

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