All Mail Button for Inbox by Gmail

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

Qu'est-ce que All Mail Button for Inbox by Gmail ?

All Mail Button for Inbox by Gmail est une extension Chrome développée par Yuval Karmi, et sa fonction principale est "Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension All Mail Button for Inbox by Gmail

Téléchargez les fichiers d'extension All Mail Button for Inbox by Gmail au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom All Mail Button for Inbox by Gmail All Mail Button for Inbox by Gmail
ID npojchjnbhghhdndikdbhmknidhnpggh
URL Officiel https://chromewebstore.google.com/detail/all-mail-button-for-inbox/npojchjnbhghhdndikdbhmknidhnpggh
Description Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail
Taille du Fichier 20.19 KB
Nombre d'Installations 192
Version Actuelle 1.0.0
Dernière Mise à Jour 2015-12-28
Date de Publication 2015-12-28
Évaluation 5.00/5 Total 3 Évaluations
Développeur Yuval Karmi
Type de Paiement free
Site Web de l'Extension https://github.com/yuvalkarmi/inbox-all-mail-button
URL de la Page d'Aide https://twitter.com/yuvalkarmi
Langues Prises en Charge 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"
    ]
}