The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

Co to jest The Old Reader Notifier?

The Old Reader Notifier to rozszerzenie Chrome opracowane przez https://theoldreader.com, a jego główną funkcją jest „Notifies you about unread items in your The Old Reader account”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia The Old Reader Notifier

Pobierz pliki rozszerzeń The Old Reader Notifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
Oficjalny URL https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Opis Notifies you about unread items in your The Old Reader account
Rozmiar pliku 72.95 KB
Liczba instalacji 3,603
Aktualna Wersja 1.5.3
Ostatnia Aktualizacja 2021-01-22
Data Publikacji 2017-09-05
Ocena 4.63/5 Łącznie 152 Oceny
Deweloper https://theoldreader.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://theoldreader.com/
Adres URL Strony Pomocy https://github.com/knyar/theoldreader-chrome/
Obsługiwane Języki 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"
        }
    ]
}