Inbox Checker for ProtonMail

Checks number of unread e-mails in the ProtonMail Inbox.

Was ist Inbox Checker for ProtonMail?

Inbox Checker for ProtonMail ist eine Chrome-Erweiterung, die von Jiri Tyr entwickelt wurde, und ihr Hauptmerkmal ist "Checks number of unread e-mails in the ProtonMail Inbox.".

Erweiterungsscreenshots

screenshot
screenshot

Inbox Checker for ProtonMail-Erweiterungs-CRX-Datei herunterladen

Laden Sie Inbox Checker for ProtonMail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Inbox Checker for ProtonMail Inbox Checker for ProtonMail
ID khohmflpainliicgcnenjnldnmffnaec
Offizielle URL https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec
Beschreibung Checks number of unread e-mails in the ProtonMail Inbox.
Dateigröße 136 KB
Installationsanzahl 3,255
Aktuelle Version 3.0
Letztes Update 2016-01-20
Veröffentlichungsdatum 2016-01-20
Bewertung 2.75/5 Insgesamt 32 Bewertungen
Entwickler Jiri Tyr
Zahlungsart free
Erweiterungswebsite https://github.com/jtyr/protonmail-checker
Unterstützte Sprachen 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"
    ]
}