BazQux Notifier

Displays the number of unread items from BazQux.com

What is BazQux Notifier?

BazQux Notifier is a Chrome extension developed by kosz, and its main feature is "Displays the number of unread items from BazQux.com".

Extension Screenshots

screenshot

Download BazQux Notifier Extension CRX File

Download BazQux Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name BazQux Notifier BazQux Notifier
ID fgoenlfbfnofepaodjepdhkoepoogedb
Official URL https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb
Description Displays the number of unread items from BazQux.com
File Size 20.6 KB
Installation Count 71
Current Version 1.2
Last Updated 2013-07-03
Publish Date 2013-07-03
Rating 5.00/5 Total 7 Ratings
Developer kosz
Payment Type free
Supported Languages 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\/"
    ]
}