Greasy Fork

Greasy Fork is available in English.

去灰色脚本

脚本的描述信息!

当前为 2022-12-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         去灰色脚本
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  脚本的描述信息!
// @author       fuce
// @license MIT
// @match        https://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_addStyle
// ==/UserScript==


// 添加 css 样式
function addStyle() {
    let css = `
    html{
       filter: grayscale(0%) !important;
       -webkit-filter: grayscale(0%) !important;
       -moz-filter: grayscale(0%) !important;
       -ms-filter: grayscale(0%) !important;
       -o-filter: grayscale(0%) !important;
    }
    `

    GM_addStyle(css)
}

(function() {
    'use strict';


setTimeout(function(){
addStyle();
    console.log("sssssssss");

},100)


})();