The Old Reader Notifier
Notifies you about unread items in your The Old Reader account
Was ist The Old Reader Notifier?
The Old Reader Notifier ist eine Chrome-Erweiterung, die von https://theoldreader.com entwickelt wurde, und ihr Hauptmerkmal ist "Notifies you about unread items in your The Old Reader account".
Erweiterungsscreenshots
The Old Reader Notifier-Erweiterungs-CRX-Datei herunterladen
Laden Sie The Old Reader Notifier-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
This extension provides a toolbar icon to notify you about unread items in your The Old Reader account, and context menu items to quickly subscribe to or bookmark a page.
Also provides support for [b] shortcut in The Old Reader (open in background) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | flnadglecinohkbmdpeooblldjpaimpo |
| Offizielle URL | https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo |
| Beschreibung | Notifies you about unread items in your The Old Reader account |
| Dateigröße | 72.95 KB |
| Installationsanzahl | 3,603 |
| Aktuelle Version | 1.5.3 |
| Letztes Update | 2021-01-22 |
| Veröffentlichungsdatum | 2017-09-05 |
| Bewertung | 4.63/5 Insgesamt 152 Bewertungen |
| Entwickler | https://theoldreader.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://theoldreader.com/ |
| Hilfeseite URL | https://github.com/knyar/theoldreader-chrome/ |
| Unterstützte Sprachen | en,cs |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.5.3",
"icons": {
"16": "img\/icon-16.png",
"48": "img\/icon-48.png",
"128": "img\/icon-128.png"
},
"background": {
"scripts": [
"js\/functions.js",
"js\/storage.js",
"js\/background.js",
"js\/menu.js"
]
},
"browser_action": {
"default_icon": {
"19": "img\/icon-inactive.png",
"38": "img\/icon-inactive-scale2.png"
},
"default_title": "The Old Reader"
},
"permissions": [
"tabs",
"notifications",
"storage",
"contextMenus",
"*:\/\/theoldreader.com\/"
],
"web_accessible_resources": [
"img\/icon-48.png"
],
"options_ui": {
"page": "options.html",
"chrome_style": false
},
"default_locale": "en",
"content_scripts": [
{
"matches": [
"*:\/\/theoldreader.com\/*"
],
"js": [
"js\/observer.js"
],
"run_at": "document_idle"
}
]
} | |