改字体

更改网页上的字体

// ==UserScript==
// @name         改字体
// @namespace    http://tampermonkey.net/
// @version      0.1.0
// @description  更改网页上的字体
// @author       share121
// @match        *://*/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    let font = ["DingTalk JinBuTi"]
    document.head.append(document.createRange().createContextualFragment(`<style>*{font-family:${font.map(e=>`"${e}"`).join(",")}!important;}</style>`))
})();

QingJ © 2025

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