Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
Cos'è Inbox Checker for ProtonMail?
Inbox Checker for ProtonMail è un'estensione di Chrome sviluppata da Jiri Tyr, e la sua funzione principale è "Checks number of unread e-mails in the ProtonMail Inbox.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Inbox Checker for ProtonMail
Scarica i file di estensione Inbox Checker for ProtonMail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | khohmflpainliicgcnenjnldnmffnaec |
| URL Ufficiale | https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec |
| Descrizione | Checks number of unread e-mails in the ProtonMail Inbox. |
| Dimensione del File | 136 KB |
| Conteggio Installazioni | 3,255 |
| Versione Corrente | 3.0 |
| Ultimo Aggiornamento | 2016-01-20 |
| Data di Pubblicazione | 2016-01-20 |
| Valutazione | 2.75/5 Totale 32 Valutazioni |
| Sviluppatore | Jiri Tyr |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/jtyr/protonmail-checker |
| Lingue Supportate | 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"
]
} | |