The Old Reader Notifier

Notifies you about unread items in your The Old Reader account

Apa itu The Old Reader Notifier?

The Old Reader Notifier adalah ekstensi Chrome yang dikembangkan oleh https://theoldreader.com, dan fitur utamanya adalah "Notifies you about unread items in your The Old Reader account".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi The Old Reader Notifier

Unduh file ekstensi The Old Reader Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama The Old Reader Notifier The Old Reader Notifier
ID flnadglecinohkbmdpeooblldjpaimpo
URL Resmi https://chromewebstore.google.com/detail/the-old-reader-notifier/flnadglecinohkbmdpeooblldjpaimpo
Deskripsi Notifies you about unread items in your The Old Reader account
Ukuran File 72.95 KB
Jumlah Instalasi 3,603
Versi Saat Ini 1.5.3
Terakhir Diperbarui 2021-01-22
Tanggal Publikasi 2017-09-05
Penilaian 4.63/5 Total 152 Penilaian
Pengembang https://theoldreader.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://theoldreader.com/
URL Halaman Bantuan https://github.com/knyar/theoldreader-chrome/
Bahasa yang Didukung 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"
        }
    ]
}