// ==UserScript== // @name 改字体 // @namespace http://tampermonkey.net/ // @version 0.1.0 // @description 更改网页上的字体 // @author share121 // @match *://*/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; let font = ["DingTalk JinBuTi"] document.head.append(document.createRange().createContextualFragment(``)) })();