您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
设置所有网站字体样式:微软雅黑+取消加粗
当前为
// ==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); })()