Gmail 'Expand all' keyboard shortcut
Press Alt+A to expand or collapse a Gmail thread
Что такое Gmail 'Expand all' keyboard shortcut?
Gmail 'Expand all' keyboard shortcut - это расширение Chrome, разработанное [email protected], и его основная функция - "Press Alt+A to expand or collapse a Gmail thread".
Снимки экрана расширения
Скачать файл CRX расширения Gmail 'Expand all' keyboard shortcut
Скачайте файлы расширений Gmail 'Expand all' keyboard shortcut в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Press Alt+A to expand or collapse a Gmail conversation thread. To change the keyboard shortcut click "Keyboard shortcuts" on the extensions page (chrome://extensions/).
Основная информация о расширении
Название | Gmail 'Expand all' keyboard shortcut |
ID | ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
Официальный URL | https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
Описание | Press Alt+A to expand or collapse a Gmail thread |
Размер файла | 8.66 KB |
Количество установок | 1,803 |
Текущая Версия | 1.1 |
Последнее Обновление | 2014-09-07 |
Дата публикации | 2014-09-07 |
Рейтинг | 4.27/5 Всего 11 оценок |
Разработчик | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail 'Expand all' keyboard shortcut", "description": "Press Alt+A to expand or collapse a Gmail thread", "version": "1.1", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "toggle-expand-all": { "suggested_key": { "default": "Alt+A" }, "description": "Send a 'toggle-expand-all' event to the extension" } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |