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-16 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Unfilter web pages
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.2
  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. document.getElementsByTagName('html')[0].style.filter = 'none';
  16. })();

QingJ © 2025

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