Reader Extension For Chrome
Simple extension to that reminds you to read what you saved.
什么是Reader Extension For Chrome?
Reader Extension For Chrome是由https://rukshn.github.io开发的Chrome扩展程序,该扩展的主要功能是“Simple extension to that reminds you to read what you saved.”。
扩展截图
下载Reader Extension For Chrome扩展crx文件
下载Reader Extension For Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple chrome extension that makes you read what you save.
**Update : New in 1.7.2**
* Full text search for your web history
* New UI
* Notification bar
* SVG bug fix
Do save items to read later and forget them later? Reader extension will show your saved items every time you open a new tab.
Reader is a simple extension helps you to bookmark and actually read what you save.
* Everything you save is shown in every New Tab
* Easy to add and remove items
* Syncing and offline mode coming soon 扩展基本信息
| 名称 | |
| ID | emeacaomhbajejnndadbkbmfhpljjeik |
| 官方URL | https://chromewebstore.google.com/detail/reader-extension-for-chro/emeacaomhbajejnndadbkbmfhpljjeik |
| 简介 | Simple extension to that reminds you to read what you saved. |
| 文件大小 | 606 KB |
| 安装次数 | 78 |
| 当前版本 | 1.7.7 |
| 更新时间 | 2018-05-28 |
| 上架时间 | 2018-05-27 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://rukshn.github.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://rukshn.github.io |
| 帮助页面URL | https://twitter.com/justruky |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reader Extension For Chrome",
"short_name": "Reader",
"description": "Simple extension to that reminds you to read what you saved.",
"version": "1.7.7",
"permissions": [
"storage",
"activeTab",
"contextMenus",
"tabs",
"https:\/\/fonts.googleapis.com\/*",
"https:\/\/cdnjs.cloudflare.com\/*",
"https:\/\/refresh.fun\/api\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistant": false
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"css": [
"main.css"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
},
{
"js": [
"cs.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"chrome_url_overrides": {
"newtab": "home.html"
},
"icons": {
"32": "icon32.png",
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png",
"256": "icon256.png"
},
"manifest_version": 2
} | |