Chrome Font Rendering Enhancer
Improves your font rendering
什么是Chrome Font Rendering Enhancer?
Chrome Font Rendering Enhancer是由incleaf开发的Chrome扩展程序,该扩展的主要功能是“Improves your font rendering”。
下载Chrome Font Rendering Enhancer扩展crx文件
下载Chrome Font Rendering Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This application improves your font rendering. You can also control the font weight with easy UI :) 扩展基本信息
| 名称 | |
| ID | jjjpbgllolhkbnpbkpcllncfmbiggljo |
| 官方URL | https://chrome.google.com/webstore/detail/chrome-font-rendering-enh/jjjpbgllolhkbnpbkpcllncfmbiggljo |
| 简介 | Improves your font rendering |
| 文件大小 | 15.04 KB |
| 安装次数 | 3,000 |
| 当前版本 | 0.0.5 |
| 更新时间 | 2016-06-07 |
| 上架时间 | 2016-06-07 |
| 评分 | 4.76/5 共37次评分 |
| 开发者 | incleaf |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/incleaf/osx-chrome-font-rendering-enhancer |
| 帮助页面URL | https://github.com/incleaf/osx-chrome-font-rendering-enhancer |
| 支持的语言 | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chrome Font Rendering Enhancer",
"version": "0.0.5",
"manifest_version": 2,
"description": "Improves your font rendering",
"homepage_url": "http:\/\/incleaf.github.io\/",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "options.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"inject.js"
]
}
],
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": false
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"tabs",
"storage"
]
} | |