之前发过一个别人写的,但是作者删源了,这里自己搞了一个
// ==UserScript==
// @name 还我彩色网页
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 移除网页上的灰度滤镜
// @author dai.ge
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removeGrayscale() {
const style = document.createElement('style');
style.innerHTML = `
html {
filter: none !important;
-webkit-filter: none !important;
}
`;
document.head.appendChild(style);
}
const observer = new MutationObserver(removeGrayscale);
observer.observe(document.body, { childList: true, subtree: true });
removeGrayscale();
})();
本站资源均为作者提供和网友推荐收集整理而来,仅供学习和研究使用,请在下载后24小时内删除,谢谢合作!
THE END