油猴脚本:取消黑白网页|解除灰色滤镜|哀悼色|恢复彩色网页

之前发过一个别人写的,但是作者删源了,这里自己搞了一个

// ==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小时内删除,谢谢合作!
油猴脚本:取消黑白网页|解除灰色滤镜|哀悼色|恢复彩色网页|不死鸟资源网
油猴脚本:取消黑白网页|解除灰色滤镜|哀悼色|恢复彩色网页
此内容为免费阅读,请登录后查看
¥0
限时特惠
¥99
文章采用CC BY-NC-SA 4.0许可协议授权
免费阅读
THE END
点赞8 分享