BazQux Notifier
Displays the number of unread items from BazQux.com
Qu'est-ce que BazQux Notifier ?
BazQux Notifier est une extension Chrome développée par kosz, et sa fonction principale est "Displays the number of unread items from BazQux.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension BazQux Notifier
Téléchargez les fichiers d'extension BazQux Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | BazQux Notifier |
ID | fgoenlfbfnofepaodjepdhkoepoogedb |
URL Officiel | https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb |
Description | Displays the number of unread items from BazQux.com |
Taille du Fichier | 20.6 KB |
Nombre d'Installations | 71 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2013-07-03 |
Date de Publication | 2013-07-03 |
Évaluation | 5.00/5 Total 7 Évaluations |
Développeur | kosz |
Type de Paiement | free |
Langues Prises en Charge | 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\/" ] } |