BazQux Notifier

Displays the number of unread items from BazQux.com

Vad är BazQux Notifier?

BazQux Notifier är en Chrome-tillägg utvecklad av kosz, och dess huvudfunktion är "Displays the number of unread items from BazQux.com".

Tilläggsskärmbilder

screenshot

Ladda ner BazQux Notifier-förlängningens CRX-fil

Ladda ner BazQux Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn BazQux Notifier BazQux Notifier
ID fgoenlfbfnofepaodjepdhkoepoogedb
Officiell webbadress https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb
Beskrivning Displays the number of unread items from BazQux.com
Filstorlek 20.6 KB
Antal Installationer 71
Aktuell Version 1.2
Senast Uppdaterad 2013-07-03
Publiceringsdatum 2013-07-03
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare kosz
Betalningssätt free
Stödda Språk 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\/"
    ]
}