Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
什麼是Inbox Checker for ProtonMail?
Inbox Checker for ProtonMail是由Jiri Tyr開發的Chrome擴展程式,該擴展的主要功能是“Checks number of unread e-mails in the ProtonMail Inbox.”。
擴展截圖
下載Inbox Checker for ProtonMail擴展crx文件
下載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 |
官方網址 | 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" ] } |