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

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

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

// ==UserScript==
// @name              所有站点使用默认字体样式
// @namespace         https://gitub.com/weirick/AllSiteDefaultFont
// @version           0.44
// @description       设置所有网站字体样式:微软雅黑+取消加粗
// @author            RCWei
// @license           GPL-3.0
// @supportURL        https://gitub.com/weirick/AllSiteDefaultFont
// @include             *://*/*
// @noframes
// @run-at            document-start
// @grant             none
// ==/UserScript==

;(function () {
  let css = document.createElement('style'); 
  css.type = 'text/css'; 
  css.innerHTML="* {font-family:微软雅黑; font-weight:400 !important;}"; 
  document.getElementsByTagName('head').item(0).appendChild(css);
})()

QingJ © 2025

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