Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
Что такое Disable Download Bar?
Disable Download Bar - это расширение Chrome, разработанное https://indowwindows.com, и его основная функция - "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".
Снимки экрана расширения
Скачать файл CRX расширения Disable Download Bar
Скачайте файлы расширений Disable Download Bar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A simple extension that adds a "close download tray" keyboard shortcut to Chrome, along with an option to prevent the tray from appearing in the first place.
Основная информация о расширении
Название | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
Официальный URL | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Описание | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Размер файла | 8.46 KB |
Количество установок | 426 |
Текущая Версия | 0.0.1.1 |
Последнее Обновление | 2019-07-29 |
Дата публикации | 2019-07-29 |
Рейтинг | 2.00/5 Всего 8 оценок |
Разработчик | https://indowwindows.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Disable Download Bar", "description": "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.", "version": "0.0.1.1", "icons": { "48": "icon48.png", "128": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "tray-close": { "suggested_key": { "default": "Alt+K" }, "description": "Close download tray." }, "open-mostrecentfile": { "suggested_key": { "default": "Alt+J" }, "description": "Open most recent download." } }, "permissions": [ "storage", "downloads", "downloads.open", "downloads.shelf" ], "options_ui": { "page": "options.html", "open_in_tab": false } } |