remove gray

移除灰色

  1. // ==UserScript==
  2. // @name remove gray
  3. // @namespace haxif
  4. // @version 0.2
  5. // @description 移除灰色
  6. // @author Frost
  7. // @match *://*/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. setTimeout(() => {
  16. if(document.getElementsByClassName("gray").length>0)
  17. {
  18. document.getElementsByClassName("gray")[0].className = "";
  19. }
  20. document.getElementsByTagName('html')[0].style['-webkit-filter']='none';
  21. }, 1000)
  22. })();

QingJ © 2025

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