Gmail Inbox Pauser

This extension temporarily pauses email delivery to your Gmail Inbox folder.

O que é Gmail Inbox Pauser?

Gmail Inbox Pauser é uma extensão do Chrome desenvolvida por Imbibe Tech, e sua principal característica é "This extension temporarily pauses email delivery to your Gmail Inbox folder.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gmail Inbox Pauser

Baixe arquivos de extensão Gmail Inbox Pauser 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

                        Do you have issues concentrating on your work from computer because of frequent email arrivals in your Gmail Inbox? Do you feel anxiety by the unread count on your Gmail Inbox continuously ticking up while you are trying to get the work done?

If yes, then this simple Chrome Extension is for you. The extension adds a on/off button to your Google Chrome toolbar. When switched on, the extension overrides the Inbox link while in Gmail to a link with your current emails pausing further delivery of emails in your browser. This allows you to address your previous emails with a cool mind without getting disturbed continuously by new email arrivals or the unread count jumping on the Inbox.

When you need your Inbox back, simply click the on/off button again and your Inbox link is brought back to you.

Please note no emails are lost while you have paused them. As soon as you switch off the pause functionality, you get your Inbox back with your updated emails.

As it sits today, this is a very simple extension concentrating on one single task. If you would like to suggest a feature request to make it more useful to you, please send the same at support at imbibe dot in.                    

Informações Básicas da Extensão

Nome Gmail Inbox Pauser Gmail Inbox Pauser
ID idcaocbhfgpmbmikgkoglfmbedocanaf
URL Oficial https://chromewebstore.google.com/detail/gmail-inbox-pauser/idcaocbhfgpmbmikgkoglfmbedocanaf
Descrição This extension temporarily pauses email delivery to your Gmail Inbox folder.
Tamanho do Arquivo 71.76 KB
Contagem de Instalações 86
Versão Atual 1.0.0.3
Última Atualização 2017-03-10
Data de Publicação 2017-03-09
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Imbibe Tech
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://imbibe.in/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Inbox Pauser",
    "description": "This extension temporarily pauses email delivery to your Gmail Inbox folder.",
    "version": "1.0.0.3",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/off.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/mail.google.com\/*"
    ]
}