Chrome Download Helper
This extension helps you managing your donwloads.
Qu'est-ce que Chrome Download Helper ?
Chrome Download Helper est une extension Chrome développée par Obstc0rp, et sa fonction principale est "This extension helps you managing your donwloads.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chrome Download Helper
Téléchargez les fichiers d'extension Chrome Download Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Chrome Download Helper |
ID | knaddinhblejecfcgajdpbebicfpejem |
URL Officiel | https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem |
Description | This extension helps you managing your donwloads. |
Taille du Fichier | 686 KB |
Nombre d'Installations | 20,000 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2015-04-09 |
Date de Publication | 2015-04-09 |
Évaluation | 2.83/5 Total 24 Évaluations |
Développeur | Obstc0rp |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Obstc0rp/Chrome-Download-Helper |
Langues Prises en Charge | 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" } } } |