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 |
| 官方網址 | 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"
]
}
]
} | |