// ==UserScript== // @name 网页点亮脚本 // @namespace https://github.com/q6378561 // @version 0.1 // @description 用于点亮变灰的网页 // @author 乱舞神菜 // @match *://* // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.onload =()=>{ document.documentElement.style = "filter: grayscale(0);" } // Your code here... })();