Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
Inbox Checker for ProtonMail là gì?
Inbox Checker for ProtonMail là một tiện ích mở rộng Chrome được phát triển bởi Jiri Tyr, và tính năng chính của nó là "Checks number of unread e-mails in the ProtonMail Inbox.".
Ả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 Inbox Checker for ProtonMail
Tải xuống các tệp mở rộng Inbox Checker for ProtonMail 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 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Inbox Checker for ProtonMail |
ID | khohmflpainliicgcnenjnldnmffnaec |
URL Chính Thức | https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec |
Mô tả | Checks number of unread e-mails in the ProtonMail Inbox. |
Kích Thước Tệp | 136 KB |
Số Lần Cài Đặt | 3,255 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2016-01-20 |
Ngày Phát Hành | 2016-01-20 |
Đánh Giá | 2.75/5 Tổng số 32 Đánh Giá |
Nhà Phát Triển | Jiri Tyr |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jtyr/protonmail-checker |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |