All Mail Button for Inbox by Gmail

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

Τι είναι το All Mail Button for Inbox by Gmail;

Το All Mail Button for Inbox by Gmail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yuval Karmi, και η κύρια λειτουργία του είναι "Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης All Mail Button for Inbox by Gmail

Λήψη αρχείων επέκτασης All Mail Button for Inbox by Gmail σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα All Mail Button for Inbox by Gmail All Mail Button for Inbox by Gmail
ID npojchjnbhghhdndikdbhmknidhnpggh
Επίσημο URL https://chromewebstore.google.com/detail/all-mail-button-for-inbox/npojchjnbhghhdndikdbhmknidhnpggh
Περιγραφή Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail
Μέγεθος Αρχείου 20.19 KB
Αριθμός Εγκαταστάσεων 192
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2015-12-28
Ημερομηνία Δημοσίευσης 2015-12-28
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Yuval Karmi
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/yuvalkarmi/inbox-all-mail-button
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/yuvalkarmi
Υποστηριζόμενες Γλώσσες 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"
    ]
}