The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

The Old Reader Notifier क्या है?

The Old Reader Notifier https://theoldreader.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notifies you about unread items in your The Old Reader account"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में The Old Reader Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}