取消网站变灰效果

try to take over the world!

目前為 2022-12-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         取消网站变灰效果
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       dioxide
// @match        https://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    let css = `
        html.gray {
             -webkit-filter:grayscale(0) ;
        }
        html{
             -webkit-filter:grayscale(0) ;
        }
    `
    GM_addStyle(css)
})();

QingJ © 2025

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