黑白

网站黑白化。

// ==UserScript==
// @name         黑白
// @namespace    https://github.com/yujinpan/tampermonkey-extension
// @version      1.0
// @license      MIT
// @description  网站黑白化。
// @author       yujinpan
// @include      http*://**
// ==/UserScript==

(function () {
  var html = document.querySelector('html');
  var style = html.getAttribute('style') || '';
  if (style && style.slice(-1) !== ';') style += ';';
  html.setAttribute('style',
    style +
    'filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);' +
    'filter: grayscale(100%);');
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址