Clear Read
Immersive reading mode
什么是Clear Read?
Clear Read是由chris.scott开发的Chrome扩展程序,该扩展的主要功能是“Immersive reading mode”。
扩展截图
下载Clear Read扩展crx文件
下载Clear Read扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a button to Chrome to toggle a distraction-free reading mode. When enabled, the plugin attempts to strip out just the core content and displays it in legible text on a plain white background. 扩展基本信息
| 名称 | |
| ID | kpipjgdapccmpkgipfikeajoopjbcgam |
| 官方URL | https://chromewebstore.google.com/detail/clear-read/kpipjgdapccmpkgipfikeajoopjbcgam |
| 简介 | Immersive reading mode |
| 文件大小 | 6.59 KB |
| 安装次数 | 26,131 |
| 当前版本 | 0.0.10 |
| 更新时间 | 2016-01-14 |
| 上架时间 | 2016-01-14 |
| 评分 | 3.95/5 共41次评分 |
| 开发者 | chris.scott |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Clear Read",
"version": "0.0.10",
"manifest_version": 2,
"description": "Immersive reading mode",
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_title": "Clear Read"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"init.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [
"clear-read.css"
],
"js": [
"clear-read.js"
]
}
]
} | |