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 Yuval Karmi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में All Mail Button for Inbox by Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}