Mail.BG Mail Notifier/Checker
Listens for new messages in your Mail.BG mailbox
Mail.BG Mail Notifier/Checkerคืออะไร?
Mail.BG Mail Notifier/Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mail.bg และคุณลักษณะหลักของมันคือ "Listens for new messages in your Mail.BG mailbox"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mail.BG Mail Notifier/Checker
ดาวน์โหลดไฟล์ส่วนขยาย Mail.BG Mail Notifier/Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will notify you on new mail arrival. Notifications are immediately pushed to the browser vs. being checked for in predefined intervals. No settings are required - just install the extension. It will not disturb you with any sounds or animation.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mail.BG Mail Notifier/Checker |
ID | piebfhjfnpgckpegengbagbhnokbflnc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mailbg-mail-notifiercheck/piebfhjfnpgckpegengbagbhnokbflnc |
คำอธิบาย | Listens for new messages in your Mail.BG mailbox |
ขนาดไฟล์ | 10.3 KB |
จำนวนการติดตั้ง | 1,272 |
เวอร์ชันปัจจุบัน | 0.7.2 |
อัปเดตครั้งล่าสุด | 2014-12-02 |
วันที่เผยแพร่ | 2014-12-02 |
คะแนน | 3.20/5 รวมทั้งหมด 30 คะแนน |
ผู้พัฒนา | https://mail.bg |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://mail.bg |
ภาษาที่รองรับ | en,bg |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mail.BG Mail Notifier\/Checker", "version": "0.7.2", "default_locale": "bg", "description": "__MSG_description__", "background": { "page": "background.html" }, "browser_action": { "default_icon": "mail_bg_inactive.png" }, "icons": { "16": "mail_bg_16.png", "48": "mail_bg_48.png", "128": "mail_bg_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/mail.bg\/*" ], "js": [ "content_script.js" ] }, { "matches": [ "*:\/\/beta.mail.bg\/*" ], "js": [ "content_script.js" ] } ], "permissions": [ "tabs", "notifications", "background", "http:\/\/mail.bg\/", "https:\/\/mail.bg\/", "http:\/\/beta.mail.bg\/", "https:\/\/beta.mail.bg\/" ] } |