取消加粗

将加粗文本恢复正常大小,阅读舒适。

// ==UserScript==
// @name         取消加粗
// @namespace    https://gf.qytechs.cn/users/1171320
// @version      1.0
// @description  将加粗文本恢复正常大小,阅读舒适。
// @author       yzcjd
// @author2     Lama AI 辅助
// @match        *://*/*
// @run-at       document-end
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 将加粗文本恢复成正常颜色
    const normalizeBoldText = () => {
        const boldElements = document.querySelectorAll('b, strong');
        boldElements.forEach(element => {
            element.style.color = 'inherit';
            element.style.fontWeight = 'normal';
        });
    };

    // 执行调整
    normalizeBoldText();
})();

QingJ © 2025

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