所有站点使用默认字体样式

设置所有网站字体样式:微软雅黑+取消加粗

目前为 2020-03-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         所有站点使用默认字体样式
// @namespace    https://rickweii.github.io
// @version      0.12
// @description  设置所有网站字体样式:微软雅黑+取消加粗
// @author       RCWei
// @include        *:*
// @exclude        *://bigjpg.com/*
// @exclude        *://*.carrotchou.blog/*
// @exclude        *://sticker.weixin.qq.com/*
// @grant        none
// @require      https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// ==/UserScript==

(function() {
    var e = document.createElement('style');
    e.innerHTML += '* {font-family:微软雅黑}';
    e.innerHTML += '* {font-weight:400 !important}';
    document.documentElement.appendChild(e);
})();

QingJ © 2025

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