Inbox Checker for ProtonMail

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

Co to jest Inbox Checker for ProtonMail?

Inbox Checker for ProtonMail to rozszerzenie Chrome opracowane przez Jiri Tyr, a jego główną funkcją jest „Checks number of unread e-mails in the ProtonMail Inbox.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Inbox Checker for ProtonMail

Pobierz pliki rozszerzeń Inbox Checker for ProtonMail w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Inbox Checker for ProtonMail Inbox Checker for ProtonMail
ID khohmflpainliicgcnenjnldnmffnaec
Oficjalny URL https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec
Opis Checks number of unread e-mails in the ProtonMail Inbox.
Rozmiar pliku 136 KB
Liczba instalacji 3,255
Aktualna Wersja 3.0
Ostatnia Aktualizacja 2016-01-20
Data Publikacji 2016-01-20
Ocena 2.75/5 Łącznie 32 Oceny
Deweloper Jiri Tyr
Typ Płatności free
Strona Rozszerzenia https://github.com/jtyr/protonmail-checker
Obsługiwane Języki 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"
    ]
}