网页字体替换为微软雅黑

网页字体替换为微软雅黑(优先)或思源黑体

目前为 2020-09-18 提交的版本。查看 最新版本

// ==UserScript==
// @namespace      https://gf.qytechs.cn/users/10250
// @name           网页字体替换为微软雅黑
// @description    网页字体替换为微软雅黑(优先)或思源黑体
// @include        *:*
// @author         heartnn
// @homepage       https://www.heartnn.com/
// @supportURL     https://gf.qytechs.cn/zh-CN/scripts/374194
// @version        1.03
// ==/UserScript==
(function() {
    function addStyle(rules) {
        var styleElement = document.createElement('style');
        styleElement.type = 'text/css';
        document.getElementsByTagName('head')[0].appendChild(styleElement);
        styleElement.appendChild(document.createTextNode(rules));
    }

    addStyle('* {font-family : "Microsoft YaHei","Source Han Sans SC","Noto Sans CJK SC",sans-serif,icomoon,Icons,iconfont,brand-icons,FontAwesome,genericons,Inconsolata,"Material Icons","Material Icons Extended","Glyphicons Halflings" !important;}');
})();

QingJ © 2025

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