Greasy Fork

Greasy Fork is available in English.

取消网站灰色过滤

取消网页变灰(黑白)效果

当前为 2022-12-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         取消网站灰色过滤
// @description  取消网页变灰(黑白)效果
// @author       Ryan Choi
// @version      1.2.
// @license      MIT
// @namespace    http://tampermonkey.net/
// @match        https://*/*
// @grant        GM_addStyle
// ==/UserScript==
(function() {
    'use strict';
    let css = `
      gray {
             -webkit-filter:grayscale(0) !important;
        }
        html{
             -webkit-filter: grayscale(0)!important;
              filter: grayscale(0)important!;
        }
        body{
            filter:grayscale(0)!important;
        }
        
         element.style {
                filter: grayscale(0)!important;
           }`
    document.body.classList.remove("big-event-gray");
    GM_addStyle(css)
})();