Greasy Fork is available in English.
我就是喜欢微软雅黑!【解决显示方框问题】
当前为
// ==UserScript==
// @name 强制使用微软雅黑
// @namespace https://coding.net/u/BackRunner/p/GreaseMonkey-JS/git
// @version 1.5
// @description 我就是喜欢微软雅黑!【解决显示方框问题】
// @author BackRunner
// @include *
// @run-at document-start
// @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([class*="logo"]):not(i){font-family:Microsoft YaHei,global-iconfont,stonefont,iknow-qb_share_icons !important;}';
document.documentElement.appendChild(element);
})();