Chrome Download Helper
This extension helps you managing your donwloads.
O que é Chrome Download Helper?
Chrome Download Helper é uma extensão do Chrome desenvolvida por Obstc0rp, e sua principal característica é "This extension helps you managing your donwloads.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Chrome Download Helper
Baixe arquivos de extensão Chrome Download Helper 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
This extension helps you managing your donwloads. If enabled any download gets it own subdirectory inside the download directory. This subdirectory gets the name of the domain where the download comes from. If enabled you can use a whitelist. Then only those downloads get a subdirectory which domain is listed. Additionally you can use defined shortkeys to open the last download (default Alt+L) and open the default download directory (default Alt+O). You can change this settings in the Chrome extension menu at the very bottom.
Informações Básicas da Extensão
Nome | Chrome Download Helper |
ID | knaddinhblejecfcgajdpbebicfpejem |
URL Oficial | https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem |
Descrição | This extension helps you managing your donwloads. |
Tamanho do Arquivo | 686 KB |
Contagem de Instalações | 20,000 |
Versão Atual | 1.2.2 |
Última Atualização | 2015-04-09 |
Data de Publicação | 2015-04-09 |
Classificação | 2.83/5 Total de 24 Avaliações |
Desenvolvedor | Obstc0rp |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Obstc0rp/Chrome-Download-Helper |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Download Helper", "description": "This extension helps you managing your donwloads.", "version": "1.2.2", "permissions": [ "downloads", "downloads.open" ], "icons": { "128": ".\/assets\/images\/icon.png" }, "background": { "scripts": [ "assets\/js\/background.js" ] }, "browser_action": { "default_icon": ".\/assets\/images\/icon.png", "default_popup": ".\/html\/popup.html" }, "options_page": ".\/html\/options.html", "commands": { "open-download-dir": { "suggested_key": { "default": "Alt+O" }, "description": "Open Download Directory" }, "open-last-downlaod": { "suggested_key": { "default": "Alt+L" }, "description": "Open Last Download" } } } |