Inbox Checker for ProtonMail

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

O que é Inbox Checker for ProtonMail?

Inbox Checker for ProtonMail é uma extensão do Chrome desenvolvida por Jiri Tyr, e sua principal característica é "Checks number of unread e-mails in the ProtonMail Inbox.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Inbox Checker for ProtonMail

Baixe arquivos de extensão Inbox Checker for ProtonMail no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Inbox Checker for ProtonMail Inbox Checker for ProtonMail
ID khohmflpainliicgcnenjnldnmffnaec
URL Oficial https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec
Descrição Checks number of unread e-mails in the ProtonMail Inbox.
Tamanho do Arquivo 136 KB
Contagem de Instalações 3,255
Versão Atual 3.0
Última Atualização 2016-01-20
Data de Publicação 2016-01-20
Classificação 2.75/5 Total de 32 Avaliações
Desenvolvedor Jiri Tyr
Tipo de Pagamento free
Site da Extensão https://github.com/jtyr/protonmail-checker
Idiomas Suportados 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"
    ]
}