自定义站点默认字体(Windows: 落霞文楷)

个人向,需要下载对应的字体文件

目前为 2023-05-31 提交的版本。查看 最新版本

// ==UserScript==

// @name 自定义站点默认字体(Windows: 落霞文楷)

// @description 个人向,需要下载对应的字体文件

// @version 1.1.6

// @author isloxi

// @match        *://*/*

// @run-at document-start

// @grant unsafeWindow

// @license MIT

// @namespace gf.qytechs.cn

// ==/UserScript==

if (navigator.userAgent.indexOf("Firefox") > -1) { //判断是否Firefox浏览器
    (function() {

        var style = document.createElement('style');

        style.type = 'text/css';

        style.innerHTML='*:not([class*="icon"]):not([class*="stonefont"]):not(i){font-family: Source Han Sans CN ,LXGW WenKai, PingFang SC,Consolas,Microsoft YaHei !important;}';

        //document.getElementsByTagName('HEAD').item(0).appendChild(style);

        document.documentElement.appendChild(style);

    })();
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址