The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

Τι είναι το The Old Reader Notifier;

Το The Old Reader Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://theoldreader.com, και η κύρια λειτουργία του είναι "Notifies you about unread items in your The Old Reader account".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης The Old Reader Notifier

Λήψη αρχείων επέκτασης The Old Reader Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
Επίσημο URL https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Περιγραφή Notifies you about unread items in your The Old Reader account
Μέγεθος Αρχείου 72.95 KB
Αριθμός Εγκαταστάσεων 3,603
Τρέχουσα Έκδοση 1.5.3
Τελευταία Ενημέρωση 2021-01-22
Ημερομηνία Δημοσίευσης 2017-09-05
Αξιολόγηση 4.63/5 Συνολικά 152 Αξιολογήσεις
Προγραμματιστής https://theoldreader.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://theoldreader.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/knyar/theoldreader-chrome/
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}