The Old Reader Notifier
Notifies you about unread items in your The Old Reader account
Wat is The Old Reader Notifier?
The Old Reader Notifier is een Chrome-extensie ontwikkeld door https://theoldreader.com, en de belangrijkste functie is "Notifies you about unread items in your The Old Reader account".
Extensie Screenshots
Download het CRX-bestand van de extensie The Old Reader Notifier
Download The Old Reader Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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) Basisinformatie over de Extensie
| Naam | |
| ID | flnadglecinohkbmdpeooblldjpaimpo |
| Officiële URL | https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo |
| Beschrijving | Notifies you about unread items in your The Old Reader account |
| Bestandsgrootte | 72.95 KB |
| Aantal Installaties | 3,603 |
| Huidige Versie | 1.5.3 |
| Laatst Bijgewerkt | 2021-01-22 |
| Publicatiedatum | 2017-09-05 |
| Beoordeling | 4.63/5 Totaal 152 Beoordelingen |
| Ontwikkelaar | https://theoldreader.com |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://theoldreader.com/ |
| Help Pagina-URL | https://github.com/knyar/theoldreader-chrome/ |
| Ondersteunde Talen | 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"
}
]
} | |