Chrome Download Helper
This extension helps you managing your donwloads.
Co to jest Chrome Download Helper?
Chrome Download Helper to rozszerzenie Chrome opracowane przez Obstc0rp, a jego główną funkcją jest „This extension helps you managing your donwloads.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Chrome Download Helper
Pobierz pliki rozszerzeń Chrome Download Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Chrome Download Helper |
ID | knaddinhblejecfcgajdpbebicfpejem |
Oficjalny URL | https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem |
Opis | This extension helps you managing your donwloads. |
Rozmiar pliku | 686 KB |
Liczba instalacji | 20,000 |
Aktualna Wersja | 1.2.2 |
Ostatnia Aktualizacja | 2015-04-09 |
Data Publikacji | 2015-04-09 |
Ocena | 2.83/5 Łącznie 24 Oceny |
Deweloper | Obstc0rp |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Obstc0rp/Chrome-Download-Helper |
Obsługiwane Języki | 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" } } } |