Greasy Fork is available in English.
鸿蒙字体!
当前为
// ==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);
})();