Greasy Fork

默认雅黑字体

修改默认字体为 微软雅黑(Microsoft YaHei)

目前为 2016-03-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         默认雅黑字体
// @version      1.2
// @description  修改默认字体为 微软雅黑(Microsoft YaHei)
// @author       QIQI
// @match        *://*/*
// @grant        none
// @run-at       document-start
// @namespace https://greasyfork.org/users/16216
// ==/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,#inputBg *,#searchBg *{font: 100% \"courier new\",monospace;}";
    }
    document.documentElement.appendChild(element);
})();