强制使用等线字体

我就是喜欢等线!【解决显示方框问题】

目前為 2016-12-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name         强制使用等线字体
// @namespace    https://coding.net/u/BackRunner/p/GreaseMonkey-JS/git
// @version      1.3
// @description  我就是喜欢等线!【解决显示方框问题】
// @author       BackRunner
// @run-at       document-start
// @include      *
// @grant        unsafeWindow
// @license      MIT
// ==/UserScript==

// ===============
// 遇到显示方框请手动添加排除或反馈
// ===============
(function() {
    var element = document.createElement("link");
    element.rel="stylesheet";
    element.type="text/css";
    element.href='data:text/css,*:not([class*="icon"]):not([class*="fa"]):not(i){font-family:DengXian,global-iconfont,stonefont !important;}';
    document.documentElement.appendChild(element);
})();

QingJ © 2025

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