BazQux Notifier
Displays the number of unread items from BazQux.com
Cos'è BazQux Notifier?
BazQux Notifier è un'estensione di Chrome sviluppata da kosz, e la sua funzione principale è "Displays the number of unread items from BazQux.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BazQux Notifier
Scarica i file di estensione BazQux Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | BazQux Notifier |
ID | fgoenlfbfnofepaodjepdhkoepoogedb |
URL Ufficiale | https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb |
Descrizione | Displays the number of unread items from BazQux.com |
Dimensione del File | 20.6 KB |
Conteggio Installazioni | 71 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2013-07-03 |
Data di Pubblicazione | 2013-07-03 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | kosz |
Tipo di Pagamento | free |
Lingue Supportate | 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\/" ] } |