您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
让网页强制使用系统字体
- // ==UserScript==
- // @name System Fonts
- // @name:en System Fonts
- // @name:zh-CN 强制系统字体
- // @name:zh-TW 強制系統字體
- // @namespace https://gf.qytechs.cn/scripts/528512
- // @version 1.0.2
- // @description 让网页强制使用系统字体
- // @description:en Let web pages force the use of system fonts
- // @description:zh-CN 让网页强制使用系统字体
- // @description:zh-TW 讓網頁強制使用系統字體
- // @author Deepseek
- // @match *://*/*
- // @exclude *://fanqienovel.com/reader/*
- // @exclude *://*.android.google.cn/*
- // @exclude *://ai.qaqgpt.com/*
- // @license MIT
- // @run-at document-start
- // ==/UserScript==
- (function() {
- const css = document.createElement('style');
- css.innerHTML = `
- *:not([class^="fa-"],[class*=" fa-"],[class^="material-"],[class*=" material-"],[class*="icon"],[class^="icon-"],[aria-hidden=true]) {
- font-family: system-ui !important;
- }
- `;
- document.head.appendChild(css);
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址