Greasy Fork

取消哔哩哔哩变灰效果

取消哔哩哔哩变灰效果-

目前为 2022-11-30 提交的版本。查看 最新版本

// ==UserScript==
// @name         取消哔哩哔哩变灰效果
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  取消哔哩哔哩变灰效果-
// @author       dioxide
// @match        https://www.bilibili.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

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