// ==UserScript== // @name 微博字体优化 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 为微博所有detail_*类设置16px字体 // @author YourName // @match https://weibo.com/* // @grant GM_addStyle // @run-at document-end // ==/UserScript== (function() { 'use strict'; // 静态样式注入(基础方案) GM_addStyle(` [class^="detail_"] { font-size: 16px !important; } `); // 动态内容监听(增强方案) const observer = new MutationObserver(mutations => { document.querySelectorAll('[class^="detail_"]').forEach(ele => { if(ele.style.fontSize !== '16px') { ele.style.cssText += 'font-size:16px !important;'; } }); }); observer.observe(document.body, { childList: true, subtree: true, attributes: false, characterData: false }); })();