The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

What is The Old Reader Notifier?

The Old Reader Notifier is a Chrome extension developed by https://theoldreader.com, and its main feature is "Notifies you about unread items in your The Old Reader account".

Extension Screenshots

screenshot
screenshot

Download The Old Reader Notifier Extension CRX File

Download The Old Reader Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
Official URL https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Description Notifies you about unread items in your The Old Reader account
File Size 72.95 KB
Installation Count 3,603
Current Version 1.5.3
Last Updated 2021-01-22
Publish Date 2017-09-05
Rating 4.63/5 Total 152 Ratings
Developer https://theoldreader.com
Email [email protected]
Payment Type free
Extension Website https://theoldreader.com/
Help Page URL https://github.com/knyar/theoldreader-chrome/
Supported Languages 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"
        }
    ]
}