盘古
// ==UserScript==
// @name 盘古
// @namespace 盘古由形如鸡卵的混沌之中孕育而生,沉睡而醒后将清浊二气上下撑开,形成了天地
// @version 1.0
// @description 取消变灰
// @author kalicyh
// @homepageURL https://www.kalicyh.love
// @match https://*/*
// @match http://*/*
// @run-at document-start
// @license AGPL License
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==
(function() {var css = [
"body,html,head,img {",
"-webkit-filter: unset!important;;",
"-moz-filter: unset!important;;",
"-ms-filter: unset!important;;",
"-o-filter: unset!important;;",
"filter: unset!important;;",
"}",
].join("\n");
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
heads[0].appendChild(node);
} else {
// no head yet, stick it whereever
document.documentElement.appendChild(node);
}
}
})();