用于去除网页灰色滤镜
目前為
// ==UserScript==
// @name Filter remover
// @version 1.4
// @namespace filter.404
// @description 用于去除网页灰色滤镜
// @author axiref
// @include http://*/*
// @include https://*/*
// @run-at document-start
// ==/UserScript==
//
// 没有真相的致哀是对牺牲者的亵渎
// 一个阻止人们自发纪念活动的政府,更没有资格搞什么「公祭日」
// 我们需要这种带着反思的具体的悼念,希望将来某天,除了反思,还有追责
//
(function() {
'use strict';
document.documentElement.style.filter = "none"
document.body.style.filter="none"
})();