Force Microsoft Yahei Font
Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site
什么是Force Microsoft Yahei Font?
Force Microsoft Yahei Font是由Shellexy开发的Chrome扩展程序,该扩展的主要功能是“Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site”。
扩展截图
下载Force Microsoft Yahei Font扩展crx文件
下载Force Microsoft Yahei Font扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site.
强制让 Chrome 使用微软雅黑/文泉驿微米黑(而不是点阵宋体)显示网页。
安装即用,不像 Stylish 之类全能样式扩展那样需要额外费心设置,
由于是指定 CSS,而非 JavaScript 遍历 DOM 修改样式,所以不占扩展进程,无须等待页面载入并修改重绘,不增加额外开销。
缺点和其他浏览器强制字体一样,webfont 和定义了衬线体的网页可能会失效,不过我已经把选择器改为 :not([class*=icon]) 来避免修改图标字体。
目前的 CSS 样式是:
:not([class*=icon]) {
font-family: "Droid Sans Fallback", "WenQuanYi Micro Hei", "Microsoft Yahei", "Noto Sans CJK", "Tahoma", sans-serif, "Simsun" !important;
} 扩展基本信息
| 名称 | |
| ID | ojlocjfaheiilmgjdgnoehhdigfedhjl |
| 官方URL | https://chromewebstore.google.com/detail/force-microsoft-yahei-fon/ojlocjfaheiilmgjdgnoehhdigfedhjl |
| 简介 | Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site |
| 文件大小 | 9.09 KB |
| 安装次数 | 5,453 |
| 当前版本 | 0.2.4 |
| 更新时间 | 2020-02-18 |
| 上架时间 | 2020-02-18 |
| 评分 | 4.52/5 共213次评分 |
| 开发者 | Shellexy |
| 付费类型 | free |
| 扩展官网 | https://bitbucket.org/shellexy/chrome-force-microsoft-yahei-font/ |
| 帮助页面URL | https://bitbucket.org/shellexy/chrome-force-microsoft-yahei-font/issues?status=new&status=open |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Force Microsoft Yahei Font",
"description": "Use WenQuanYi Micro Hei \/ Microsoft Yahei Chinese Font for all site",
"version": "0.2.4",
"manifest_version": 2,
"icons": {
"128": "icon128.png",
"19": "icon19.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"font.css"
]
}
]
} | |