Chrome Download Helper
This extension helps you managing your donwloads.
Vad är Chrome Download Helper?
Chrome Download Helper är en Chrome-tillägg utvecklad av Obstc0rp, och dess huvudfunktion är "This extension helps you managing your donwloads.".
Tilläggsskärmbilder
Ladda ner Chrome Download Helper-förlängningens CRX-fil
Ladda ner Chrome Download Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Chrome Download Helper |
ID | knaddinhblejecfcgajdpbebicfpejem |
Officiell webbadress | https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem |
Beskrivning | This extension helps you managing your donwloads. |
Filstorlek | 686 KB |
Antal Installationer | 20,000 |
Aktuell Version | 1.2.2 |
Senast Uppdaterad | 2015-04-09 |
Publiceringsdatum | 2015-04-09 |
Betyg | 2.83/5 Totalt 24 Betyg |
Utvecklare | Obstc0rp |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/Obstc0rp/Chrome-Download-Helper |
Stödda Språk | 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" } } } |