Unfilter web pages

Just disable for web pages which roughly use CSS filter to the websites, update @match may needed to suit you personal usage.

当前为 2016-10-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Unfilter web pages
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Just disable for web pages which roughly use CSS filter to the websites, update @match may needed to suit you personal usage.
  6. // @author anonymous
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. document.body.style.filter = 'none';
  15. })();

QingJ © 2025

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