System Fonts

让网页强制使用系统字体

// ==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或关注我们的公众号极客氢云获取最新地址