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”。
擴展截圖
下載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 |
ID | npojchjnbhghhdndikdbhmknidhnpggh |
官方網址 | 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" ] } |