The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

Co je The Old Reader Notifier?

The Old Reader Notifier je rozšíření Chrome vyvinuté https://theoldreader.com, a jeho hlavní funkcí je „Notifies you about unread items in your The Old Reader account“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření The Old Reader Notifier

Stáhněte si soubory rozšíření The Old Reader Notifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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)                    

Základní Informace o Rozšíření

Název The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
Oficiální URL https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Popis Notifies you about unread items in your The Old Reader account
Velikost souboru 72.95 KB
Počet instalací 3,603
Aktuální Verze 1.5.3
Poslední Aktualizace 2021-01-22
Datum Vydání 2017-09-05
Hodnocení 4.63/5 Celkem 152 Hodnocení
Vývojář https://theoldreader.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://theoldreader.com/
URL Stránky Nápovědy https://github.com/knyar/theoldreader-chrome/
Podporované Jazyky 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"
        }
    ]
}