// ==UserScript== // @name 默认雅黑字体 // @version 1.1 // @description 修改默认字体为 微软雅黑(Microsoft YaHei) // @author QIQI // @match *://*/* // @grant none // @run-at document-start // @namespace https://greasyfork.org/users/16216 // @downloadURL none // ==/UserScript== (function(){ var element = document.createElement("link"); element.rel="stylesheet"; element.type="text/css"; element.href="data:text/css,*{font-family:\"Microsoft YaHei\"}"; if(window.location.href=="http://tool.chinaz.com/regex" || window.location.href=="http://tool.chinaz.com/regex/"){ element.href+=" #inputText,#inputBg,#searchText,#searchBg{font: 100% \"Microsoft YaHei\"}"; } document.documentElement.appendChild(element); })();