Greasy Fork

Greasy Fork is available in English.

鸿蒙字体

鸿蒙字体!

当前为 2024-09-29 提交的版本,查看 最新版本

// ==UserScript==
// @name 鸿蒙字体
// @namespace 鸿蒙字体
// @version 1.4
// @description 鸿蒙字体!
// @author LWF
// @license MIT
// @match *
// @exclude *://fanqienovel.com/reader/*
// @exclude *://*.android.google.cn/*
// @exclude *://www.bilibili.com/*
// @run-at document-start
// ==/UserScript==

(function() {
    'use strict';

    // 创建link标签并设置属性
    const link = document.createElement('link');
    link.rel = 'stylesheet';
    link.href = 'https://developer.huawei.com/config/commonResource/font/font.css';
    document.head.appendChild(link);

    // 创建style标签并设置样式
    const style = document.createElement('style');
    style.textContent = `
        * {
            font-family: 'HarmonyOS Sans', 'HarmonyOS_Regular' !important;
        }
    `;
    document.head.appendChild(style);
})();