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によって開発されたChromeの拡張機能で、その主な機能は「Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail」です。

拡張機能のスクリーンショット

screenshot

All Mail Button for Inbox by Gmail拡張機能のCRXファイルをダウンロード

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