BazQux Notifier
Displays the number of unread items from BazQux.com
BazQux Notifier là gì?
BazQux Notifier là một tiện ích mở rộng Chrome được phát triển bởi kosz, và tính năng chính của nó là "Displays the number of unread items from BazQux.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng BazQux Notifier
Tải xuống các tệp mở rộng BazQux Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | BazQux Notifier |
ID | fgoenlfbfnofepaodjepdhkoepoogedb |
URL Chính Thức | https://chromewebstore.google.com/detail/bazqux-notifier/fgoenlfbfnofepaodjepdhkoepoogedb |
Mô tả | Displays the number of unread items from BazQux.com |
Kích Thước Tệp | 20.6 KB |
Số Lần Cài Đặt | 71 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2013-07-03 |
Ngày Phát Hành | 2013-07-03 |
Đánh Giá | 5.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | kosz |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |