Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
Inbox Checker for ProtonMailคืออะไร?
Inbox Checker for ProtonMail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jiri Tyr และคุณลักษณะหลักของมันคือ "Checks number of unread e-mails in the ProtonMail Inbox."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Inbox Checker for ProtonMail
ดาวน์โหลดไฟล์ส่วนขยาย Inbox Checker for ProtonMail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This Google Chrome extension checks the number of unread e-mails in the ProtonMail Inbox. The extension only works when the ProtonMail is open via URL https://protonmail.ch and is fully logged in. Usage: 1. Install the ProtonMail Checker extension 2. Click on the ProtonMail Checker icon 3. Log into your ProtonMail account
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Inbox Checker for ProtonMail |
ID | khohmflpainliicgcnenjnldnmffnaec |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec |
คำอธิบาย | Checks number of unread e-mails in the ProtonMail Inbox. |
ขนาดไฟล์ | 136 KB |
จำนวนการติดตั้ง | 3,255 |
เวอร์ชันปัจจุบัน | 3.0 |
อัปเดตครั้งล่าสุด | 2016-01-20 |
วันที่เผยแพร่ | 2016-01-20 |
คะแนน | 2.75/5 รวมทั้งหมด 32 คะแนน |
ผู้พัฒนา | Jiri Tyr |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jtyr/protonmail-checker |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inbox Checker for ProtonMail", "version": "3.0", "description": "Checks number of unread e-mails in the ProtonMail Inbox.", "icons": { "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "browser_action": { "default_icon": "icons\/icon-48g.png", "default_title": "Inbox Checker for ProtonMail" }, "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "html\/options.html", "content_scripts": [ { "matches": [ "https:\/\/mail.protonmail.com\/*" ], "js": [ "scripts\/jquery-2.0.2.min.js", "scripts\/contentscript.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "scripts\/jquery-2.0.2.min.map", "icons\/icon-48.png" ], "permissions": [ "notifications", "tabs" ] } |