// ==UserScript== // @name 菜鸟的自制背景护眼色脚本 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 菜鸟的初次尝试哈!(所有网页均适用,可能与其它修改页面背景色脚本冲突,作者概不负责!任性.gif) // @author Crazy_AI // @match *://*/* // @icon // @grant none // @downloadURL none // ==/UserScript== (() => { 'use strict'; const iterator_element = document.querySelectorAll('*') iterator_element.forEach(item => { item.style.backgroundColor = '#C7EDCC' }) })()