网页字体替换为微软雅黑+阴影

网页字体替换为微软雅黑并加入text-shadow

目前为 2018-11-21 提交的版本。查看 最新版本

// ==UserScript==
// @namespace      https://gf.qytechs.cn/zh-CN/users/10250
// @name           网页字体替换为微软雅黑+阴影
// @description    网页字体替换为微软雅黑并加入text-shadow
// @include        *:*
// @author         heartnn
// @homepage       https://www.heartnn.com/
// @supportURL     https://gf.qytechs.cn/zh-CN/scripts/374194
// @version        1.01
// ==/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 : -apple-system,"Merriweather","Noto Sans","Helvetica Neue",Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Noto Sans CJK SC","Microsoft YaHei","Wenquanyi Micro Hei","WenQuanYi Zen Hei","ST Heiti",SimHei,"Open Sans",Inconsolata,genericons,iconfont,FontAwesome,sans-serif}');
    addStyle('*:not([class*="bilibili-danmaku"]):not([style*="background: rgba"]){text-shadow: 0 0 0.01em rgba(0,0,0,0.5) !important;}');
})();

QingJ © 2025

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