Greasy Fork

任意网站去黑白

去除任意网站的黑白样式

目前为 2022-12-05 提交的版本。查看 最新版本

// ==UserScript==
// @name 任意网站去黑白
// @namespace http://tampermonkey.net/
// @version 7.1
// @description 去除任意网站的黑白样式
// @author share121
// @match *://*/*
// @match *
// @license MIT
// @grant none
// @homepageURL https://greasyfork.org/zh-CN/scripts/455866
// @supportURL https://greasyfork.org/zh-CN/scripts/455866/feedback
// @run-at document-start
// ==/UserScript==

setInterval(function () {
  document.querySelectorAll("*").forEach(function (e) {
    var s = getComputedStyle(e);
    e.style.setProperty(
      "filter",
      s.filter && s.filter.replace(/grayscale\(.*?\)/g, "grayscale(0)"),
      "important"
    );
    e.style.setProperty(
      "-webkit-filter",
      s.webkitFilter &&
        s.webkitFilter.replace(/grayscale\(.*?\)/g, "grayscale(0)"),
      "important"
    );
  });
}, 0);