Nginx Plus
Alternate CSS for nginx.org with a focus on readability.
什么是Nginx Plus?
Nginx Plus是由https://www.niteshk.com开发的Chrome扩展程序,该扩展的主要功能是“Alternate CSS for nginx.org with a focus on readability.”。
扩展截图
下载Nginx Plus扩展crx文件
下载Nginx Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Feedback: @niteshk5 on Twitter 扩展基本信息
| 名称 | |
| ID | meliiblidnfgegbdnfogeboedehkaema |
| 官方URL | https://chromewebstore.google.com/detail/nginx-plus/meliiblidnfgegbdnfogeboedehkaema |
| 简介 | Alternate CSS for nginx.org with a focus on readability. |
| 文件大小 | 41.62 KB |
| 安装次数 | 225 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2013-11-29 |
| 上架时间 | 2013-11-29 |
| 评分 | 3.80/5 共5次评分 |
| 开发者 | https://www.niteshk.com |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Nginx Plus",
"version": "1.0.1",
"description": "Alternate CSS for nginx.org with a focus on readability.",
"icons": {
"128": "icon-128.png"
},
"browser_action": {
"default_icon": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/nginx.org\/*"
],
"js": [
"contentscript.js"
]
}
],
"background": {
"page": "background.html"
},
"permissions": [
"tabs",
"http:\/\/nginx.org\/*"
],
"web_accessible_resources": [
"contentscript.js"
]
} | |