Reader Extension For Chrome
Simple extension to that reminds you to read what you saved.
Was ist Reader Extension For Chrome?
Reader Extension For Chrome ist eine Chrome-Erweiterung, die von https://rukshn.github.io entwickelt wurde, und ihr Hauptmerkmal ist "Simple extension to that reminds you to read what you saved.".
Erweiterungsscreenshots
Reader Extension For Chrome-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reader Extension For Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | emeacaomhbajejnndadbkbmfhpljjeik |
| Offizielle URL | https://chromewebstore.google.com/detail/reader-extension-for-chro/emeacaomhbajejnndadbkbmfhpljjeik |
| Beschreibung | Simple extension to that reminds you to read what you saved. |
| Dateigröße | 606 KB |
| Installationsanzahl | 78 |
| Aktuelle Version | 1.7.7 |
| Letztes Update | 2018-05-28 |
| Veröffentlichungsdatum | 2018-05-27 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://rukshn.github.io |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://rukshn.github.io |
| Hilfeseite URL | https://twitter.com/justruky |
| Unterstützte Sprachen | 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
} | |