// ==UserScript== // @name Filter remover // @version 1.8 // @namespace filter.404 // @license GNU General Public License v3.0 // @description 用于去除网页灰色滤镜 // @author eduarte // @include http://*/* // @include https://*/* // @run-at document-end // @downloadURL none // ==/UserScript== // // 没有真相的致哀是对牺牲者的亵渎 // 一个阻止人们自发纪念活动的政府,更没有资格搞什么「公祭日」 // 我们需要这种带着反思的具体的悼念,希望将来某天,除了反思,还有追责 // (function() { 'use strict'; //普通网站 document.documentElement.style.setProperty('filter', 'none', 'important'); document.body.style.setProperty('filter', 'none', 'important'); //百度网盘之类后加载滤镜的网站 setTimeout(function(){ document.documentElement.style.setProperty('filter', 'none', 'important'); document.body.style.setProperty('filter', 'none', 'important'); }, 300); })();