// ==UserScript== // @name 网页字体替换 // @author Cairl // @version 1.0 // @description 更改网页显示字体 // @match *://*/* // @grant none // @namespace https://greasyfork.org/users/241490 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 自定义字体名称 const customFont = 'Arial'; // 添加 CSS 样式以覆盖页面字体(仅限于 body 部分) const style = document.createElement('style'); style.innerHTML = ` body { font-family: '${customFont}' !important; } `; document.head.appendChild(style); })();