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 |
官方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" ] } |