BazQux Notifier

Displays the number of unread items from BazQux.com

Wat is BazQux Notifier?

BazQux Notifier is een Chrome-extensie ontwikkeld door kosz, en de belangrijkste functie is "Displays the number of unread items from BazQux.com".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie BazQux Notifier

Download BazQux Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam BazQux Notifier BazQux Notifier
ID fgoenlfbfnofepaodjepdhkoepoogedb
Officiële URL https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb
Beschrijving Displays the number of unread items from BazQux.com
Bestandsgrootte 20.6 KB
Aantal Installaties 71
Huidige Versie 1.2
Laatst Bijgewerkt 2013-07-03
Publicatiedatum 2013-07-03
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar kosz
Betalingswijze free
Ondersteunde Talen 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\/"
    ]
}