黑白网页恢复彩色,匹配所有网页,即装即用。
当前为
// ==UserScript==
// @name 黑白网页恢复彩色
// @namespace http://tampermonkey.net/
// @version 1.1
// @license MIT
// @description 黑白网页恢复彩色,匹配所有网页,即装即用。
// @author https://gf.qytechs.cn/users/574395-frammolz-amanda
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
var filter = document.createElement('style');
filter.type = 'text/css';
document.getElementsByTagName('head')[0].appendChild(filter);
filter.appendChild(document.createTextNode("*{-webkit-filter:none!important;}"));
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址