Greasy Fork is available in English.
取消哔哩哔哩变灰效果-
当前为
// ==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)
})();