🏠 Home 

b站首页黑白去除

去除b站(bilibili)首页的黑白滤镜


Install this script?
// ==UserScript==
// @name         b站首页黑白去除
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  去除b站(bilibili)首页的黑白滤镜
// @author       thunder-sword
// @match        *://www.bilibili.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @license      MIT
// @grant        none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
document.querySelectorAll('.gray').forEach(e => e.className='');
})();