Disable Download Bar
Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.
O que é Disable Download Bar?
Disable Download Bar é uma extensão do Chrome desenvolvida por https://indowwindows.com, e sua principal característica é "Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Disable Download Bar
Baixe arquivos de extensão Disable Download Bar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Disable Download Bar |
ID | nhdeokdadlelojjohmmpjjdjbhgimohi |
URL Oficial | https://chromewebstore.google.com/detail/disable-download-bar/nhdeokdadlelojjohmmpjjdjbhgimohi |
Descrição | Adds the option to suppress the download tray or add a keyboard shortcut (default Alt+K) to close it. |
Tamanho do Arquivo | 8.46 KB |
Contagem de Instalações | 426 |
Versão Atual | 0.0.1.1 |
Última Atualização | 2019-07-29 |
Data de Publicação | 2019-07-29 |
Classificação | 2.00/5 Total de 8 Avaliações |
Desenvolvedor | https://indowwindows.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } } |