Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
Qu'est-ce que Inbox Checker for ProtonMail ?
Inbox Checker for ProtonMail est une extension Chrome développée par Jiri Tyr, et sa fonction principale est "Checks number of unread e-mails in the ProtonMail Inbox.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Inbox Checker for ProtonMail
Téléchargez les fichiers d'extension Inbox Checker for ProtonMail au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Inbox Checker for ProtonMail |
ID | khohmflpainliicgcnenjnldnmffnaec |
URL Officiel | https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec |
Description | Checks number of unread e-mails in the ProtonMail Inbox. |
Taille du Fichier | 136 KB |
Nombre d'Installations | 3,255 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2016-01-20 |
Date de Publication | 2016-01-20 |
Évaluation | 2.75/5 Total 32 Évaluations |
Développeur | Jiri Tyr |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jtyr/protonmail-checker |
Langues Prises en Charge | 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" ] } |