修改网页复选框颜色

修改所有网页文字文字复选框颜色

当前为 2023-03-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         修改网页复选框颜色
// @namespace    https://gf.qytechs.cn/zh-CN/scripts/
// @version      1.0.1
// @description  修改所有网页文字文字复选框颜色
// @author       nosora
// @match        *://*/*
// @grant        none
// @run-at       document-start
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 修改选中框的颜色为阴影色,可自定义
    const selectionColor = '#00000015';

    // 添加样式
    const style = document.createElement('style');
    style.innerHTML = `::selection { background-color: ${selectionColor}; }`;
    document.head.appendChild(style);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址