默认雅黑字体

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

目前为 2016-02-01 提交的版本。查看 最新版本

// ==UserScript==
// @name         默认雅黑字体
// @version      1.1
// @description  修改默认字体为 微软雅黑(Microsoft YaHei)
// @author       QIQI
// @match        *://*/*
// @grant        none
// @run-at       document-start
// @namespace https://gf.qytechs.cn/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{font: 100% \"Microsoft YaHei\"}";
    }
    document.documentElement.appendChild(element);
})();

QingJ © 2025

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