Greasy Fork

改字体

更改网页上的字体

// ==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>`))
})();