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
官方網址 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\/"
    ]
}