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 là gì?

All Mail Button for Inbox by Gmail là một tiện ích mở rộng Chrome được phát triển bởi Yuval Karmi, và tính năng chính của nó là "Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng All Mail Button for Inbox by Gmail

Tải xuống các tệp mở rộng All Mail Button for Inbox by Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên All Mail Button for Inbox by Gmail All Mail Button for Inbox by Gmail
ID npojchjnbhghhdndikdbhmknidhnpggh
URL Chính Thức https://chromewebstore.google.com/detail/all-mail-button-for-inbox/npojchjnbhghhdndikdbhmknidhnpggh
Mô tả Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail
Kích Thước Tệp 20.19 KB
Số Lần Cài Đặt 192
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2015-12-28
Ngày Phát Hành 2015-12-28
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Yuval Karmi
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/yuvalkarmi/inbox-all-mail-button
URL Trang Trợ Giúp https://twitter.com/yuvalkarmi
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}