BazQux Notifier
Displays the number of unread items from BazQux.com
Apa itu BazQux Notifier?
BazQux Notifier adalah ekstensi Chrome yang dikembangkan oleh kosz, dan fitur utamanya adalah "Displays the number of unread items from BazQux.com".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi BazQux Notifier
Unduh file ekstensi BazQux Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | BazQux Notifier |
ID | fgoenlfbfnofepaodjepdhkoepoogedb |
URL Resmi | https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb |
Deskripsi | Displays the number of unread items from BazQux.com |
Ukuran File | 20.6 KB |
Jumlah Instalasi | 71 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2013-07-03 |
Tanggal Publikasi | 2013-07-03 |
Penilaian | 5.00/5 Total 7 Penilaian |
Pengembang | kosz |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/" ] } |