All Mail Button for Inbox by Gmail

Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail

O que é All Mail Button for Inbox by Gmail?

All Mail Button for Inbox by Gmail é uma extensão do Chrome desenvolvida por Yuval Karmi, e sua principal característica é "Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão All Mail Button for Inbox by Gmail

Baixe arquivos de extensão All Mail Button for Inbox by Gmail 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

                        Gmail has a great option to view 'All Mail', which includes labeled, archived, and otherwise sorted mail.
Inbox by Gmail is a fantastic new webapp, but sadly lacks the `All Mail` option.

Not to worry, though! This tiny extension comes to the rescue, adding a button to Inbox's sidebar, right under "Reminders".

Its aesthetic design is in line with the rest of Inbox's design language, and it keeps the experience streamlined.

When clicked, it inputs the "in:all" query into the search box and emulates a search event so that all of the mail appears, just like in Gmail.

The source code itself is under 50 lines, has no dependencies, and runs super fast. You're welcome to view it at:
https://github.com/yuvalkarmi/inbox-all-mail-button.                    

Informações Básicas da Extensão

Nome All Mail Button for Inbox by Gmail All Mail Button for Inbox by Gmail
ID npojchjnbhghhdndikdbhmknidhnpggh
URL Oficial https://chromewebstore.google.com/detail/all-mail-button-for-inbox/npojchjnbhghhdndikdbhmknidhnpggh
Descrição Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail
Tamanho do Arquivo 20.19 KB
Contagem de Instalações 192
Versão Atual 1.0.0
Última Atualização 2015-12-28
Data de Publicação 2015-12-28
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Yuval Karmi
Tipo de Pagamento free
Site da Extensão https://github.com/yuvalkarmi/inbox-all-mail-button
URL da Página de Ajuda https://twitter.com/yuvalkarmi
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Yuval Karmi",
    "name": "All Mail Button for Inbox by Gmail",
    "short_name": "All Mail Button",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail",
    "homepage_url": "https:\/\/github.com\/yuvalkarmi\/inbox-all-mail-button",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ]
}