b站首页黑白去除

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

  1. // ==UserScript==
  2. // @name b站首页黑白去除
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 去除b站(bilibili)首页的黑白滤镜
  6. // @author thunder-sword
  7. // @match *://www.bilibili.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Your code here...
  17. document.querySelectorAll('.gray').forEach(e => e.className='');
  18. })();

QingJ © 2025

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