// ==UserScript== // @name 取消加粗 // @namespace https://greasyfork.org/users/1171320 // @version 1.0 // @description 将加粗文本恢复正常大小,阅读舒适。 // @author yzcjd // @author2 Lama AI 辅助 // @match *://*/* // @run-at document-end // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 将加粗文本恢复成正常颜色 const normalizeBoldText = () => { const boldElements = document.querySelectorAll('b, strong'); boldElements.forEach(element => { element.style.color = 'inherit'; element.style.fontWeight = 'normal'; }); }; // 执行调整 normalizeBoldText(); })();