// ==UserScript== // @name 修改网页复选框颜色 // @namespace https://greasyfork.org/zh-CN/scripts/461245 // @version 1.0.1 // @description 修改所有网页文字文字复选框颜色 // @author nosora // @match *://*/* // @grant none // @run-at document-start // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 修改选中框的颜色为阴影色,可自定义 const selectionColor = '#00000015'; // 添加样式 const style = document.createElement('style'); style.innerHTML = `::selection { background-color: ${selectionColor}; }`; document.head.appendChild(style); })();