Greasy Fork

灰度调整

黑白网页恢复彩色

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

// ==UserScript==
// @name         灰度调整
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  黑白网页恢复彩色
// @author       tetu137
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @license           AGPL License
// ==/UserScript==

(function () {
  "use strict";
  let html = document.documentElement;
  html.classList.remove("gray",'itcauecng');
  console.log("123已执行");
})();