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 - это расширение Chrome, разработанное Yuval Karmi, и его основная функция - "Adds an 'All Mail' Button under the Reminders button in the sidebar in Inbox by Gmail".
Снимки экрана расширения
Скачать файл CRX расширения All Mail Button for Inbox by Gmail
Скачайте файлы расширений 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 |
Официальный 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" ] } |