BazQux Notifier

Displays the number of unread items from BazQux.com

BazQux Notifierとは何ですか?

BazQux Notifierはkoszによって開発されたChromeの拡張機能で、その主な機能は「Displays the number of unread items from BazQux.com」です。

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

screenshot

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

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

拡張機能の使用方法

                        This extension displays the number of unread items from BazQux.com in toolbar button.

Install the extension and log in to https://bazqux.com if needed. You will get unread count on the icon's badge. Click the button to open BazQux Reader site in a new tab.                    

拡張機能の基本情報

名前 BazQux Notifier BazQux Notifier
ID fgoenlfbfnofepaodjepdhkoepoogedb
公式URL https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb
説明 Displays the number of unread items from BazQux.com
ファイルサイズ 20.6 KB
インストール数 71
現在のバージョン 1.2
最終更新日 2013-07-03
公開日 2013-07-03
評価 5.00/5 合計 7 レビュー
開発者 kosz
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BazQux Notifier",
    "description": "Displays the number of unread items from BazQux.com",
    "version": "1.2",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon-19.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bazqux.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "alarms",
        "tabs",
        "https:\/\/bazqux.com\/"
    ]
}