// ==UserScript== // @name Filter remover // @version 1.0 // @namespace filter.oxdl.cn // @description test script // @author axiref // @include http://*/* // @include https://*/* // @run-at document-start // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.documentElement.style.filter = "none" document.body.style.filter="none" })();