BazQux Notifier
Displays the number of unread items from BazQux.com
BazQux Notifierคืออะไร?
BazQux Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kosz และคุณลักษณะหลักของมันคือ "Displays the number of unread items from BazQux.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BazQux Notifier
ดาวน์โหลดไฟล์ส่วนขยาย BazQux Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | BazQux Notifier |
ID | fgoenlfbfnofepaodjepdhkoepoogedb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb |
คำอธิบาย | Displays the number of unread items from BazQux.com |
ขนาดไฟล์ | 20.6 KB |
จำนวนการติดตั้ง | 71 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2013-07-03 |
วันที่เผยแพร่ | 2013-07-03 |
คะแนน | 5.00/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | kosz |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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\/" ] } |