The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

Qu'est-ce que The Old Reader Notifier ?

The Old Reader Notifier est une extension Chrome développée par https://theoldreader.com, et sa fonction principale est "Notifies you about unread items in your The Old Reader account".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension The Old Reader Notifier

Téléchargez les fichiers d'extension The Old Reader Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
URL Officiel https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Description Notifies you about unread items in your The Old Reader account
Taille du Fichier 72.95 KB
Nombre d'Installations 3,603
Version Actuelle 1.5.3
Dernière Mise à Jour 2021-01-22
Date de Publication 2017-09-05
Évaluation 4.63/5 Total 152 Évaluations
Développeur https://theoldreader.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://theoldreader.com/
URL de la Page d'Aide https://github.com/knyar/theoldreader-chrome/
Langues Prises en Charge 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"
        }
    ]
}