网页去灰

去除附加在网站上的灰色滤镜

  1. // ==UserScript==
  2. // @name 网页去灰
  3. // @namespace https://bbs.tampermonkey.net.cn/
  4. // @version 0.1.0
  5. // @description 去除附加在网站上的灰色滤镜
  6. // @author Logs404
  7. // @match *
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.querySelector("html").style.filter = 'none'
  14. document.querySelector("html").style.webkitFilter = 'none'
  15. })();

QingJ © 2025

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