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によって開発されたChromeの拡張機能で、その主な機能は「Notifies you about unread items in your The Old Reader account」です。

拡張機能のスクリーンショット

screenshot
screenshot

The Old Reader Notifier拡張機能のCRXファイルをダウンロード

The Old Reader Notifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}