Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
Vad är Inbox Checker for ProtonMail?
Inbox Checker for ProtonMail är en Chrome-tillägg utvecklad av Jiri Tyr, och dess huvudfunktion är "Checks number of unread e-mails in the ProtonMail Inbox.".
Tilläggsskärmbilder
Ladda ner Inbox Checker for ProtonMail-förlängningens CRX-fil
Ladda ner Inbox Checker for ProtonMail-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | khohmflpainliicgcnenjnldnmffnaec |
| Officiell webbadress | https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec |
| Beskrivning | Checks number of unread e-mails in the ProtonMail Inbox. |
| Filstorlek | 136 KB |
| Antal Installationer | 3,255 |
| Aktuell Version | 3.0 |
| Senast Uppdaterad | 2016-01-20 |
| Publiceringsdatum | 2016-01-20 |
| Betyg | 2.75/5 Totalt 32 Betyg |
| Utvecklare | Jiri Tyr |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/jtyr/protonmail-checker |
| Stödda Språk | 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"
]
} | |