Enka.中文字体修改为游戏字体

请按照安装界面的指引操作

// ==UserScript==
// @name         Enka.中文字体修改为游戏字体
// @version      1.0.0
// @namespace    https://greasyfork.org/users/325815
// @description  请按照安装界面的指引操作
// @author       monat151
// @match        https://enka.network/u/*
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval(() => {
        const styleSheetCount = document.styleSheets.length;
        document.styleSheets[styleSheetCount-1].insertRule(`b { font-family: 'SDK_SC_Web 85W'; font-weight: normal; }`)
        document.styleSheets[styleSheetCount-1].insertRule(`.sub { font-family: 'SDK_SC_Web 85W'; }`)
    }, 500);
})();