全局灰色滤镜

一个简单的插件 只是给你的页面加上一个灰色滤镜

// ==UserScript==
// @name         全局灰色滤镜
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  一个简单的插件 只是给你的页面加上一个灰色滤镜
// @author       fgt1t5y
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement("style");
    style.innerHTML = ".global_gray{filter: grayscale(100%);}";
    document.body.appendChild(style);
    document.body.classList.add("global_gray");
})();

QingJ © 2025

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