Zen Reading
Provide a nice and clean reading experience for any web article.
什么是Zen Reading?
Zen Reading是由https://www.nclsmitchell.com开发的Chrome扩展程序,该扩展的主要功能是“Provide a nice and clean reading experience for any web article.”。
扩展截图
下载Zen Reading扩展crx文件
下载Zen Reading扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
New features coming soon.
Latest update:
- Adding the possibility to swtich on/off without page reload
- New active icon 扩展基本信息
| 名称 | |
| ID | jbijaekkhbdedopipdoepignpolobenj |
| 官方URL | https://chromewebstore.google.com/detail/zen-reading/jbijaekkhbdedopipdoepignpolobenj |
| 简介 | Provide a nice and clean reading experience for any web article. |
| 文件大小 | 38.48 KB |
| 安装次数 | 25 |
| 当前版本 | 1.1.6 |
| 更新时间 | 2015-10-29 |
| 上架时间 | 2015-10-29 |
| 评分 | 2.00/5 共2次评分 |
| 开发者 | https://www.nclsmitchell.com |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Zen Reading",
"description": "Provide a nice and clean reading experience for any web article.",
"version": "1.1.6",
"browser_action": {
"default_icon": "icon-zen-reading.png",
"name": "Click to Zen Mode"
},
"background": {
"scripts": [
"zen-reading-background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"zen-reading.css"
],
"js": [
"jquery.min.js"
]
}
],
"permissions": [
"activeTab"
]
} | |