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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}