Greasy Fork is available in English.

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

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

// ==UserScript==

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

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

// @icon https://assets.5a8.org/aitxt/web_0526/favicon.ico 

// @version 1.1.8

// @author isloxi

// @match        *://*/*

// @run-at document-start

// @grant unsafeWindow

// @license MIT

// @namespace greasyfork.org

// ==/UserScript==


(function() {
    if (navigator.userAgent.indexOf("Firefox") > -1) {
        var style = document.createElement('style');

        style.type = 'text/css';

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

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

        document.documentElement.appendChild(style);
    }
})();