Download Manager
A less intrusive way to access your recent downloads
Qu'est-ce que Download Manager ?
Download Manager est une extension Chrome développée par https://james-coyle.dev, et sa fonction principale est "A less intrusive way to access your recent downloads".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Download Manager
Téléchargez les fichiers d'extension Download Manager 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
Replaces the chrome downloads bar with a toolbar icon. The popup is styled to look like the new extensions menu for a more native feel. FEATURES - Access your download list at any time from the chrome toolbar - Option to display in the browser sidebar - Quickly search recent downloads - Badge count to show download status at a glance - Pause and resume downloads easily - Clear downloads from your history - Delete downloaded files from the popup - Open file in default application - Open file in browser - Open folder which contains the file - Quick link to chrome downloads page - Notification when your download completes INSTRUCTIONS Hold Ctrl to change the secondary download actions. Alt-J opens the popup.
Informations de Base sur l'Extension
Nom | Download Manager |
ID | epgkpmpjileiepinlphboolabkkdelle |
URL Officiel | https://chromewebstore.google.com/detail/download-manager/epgkpmpjileiepinlphboolabkkdelle |
Description | A less intrusive way to access your recent downloads |
Taille du Fichier | 38.36 KB |
Nombre d'Installations | 29,091 |
Version Actuelle | 4.1.1 |
Dernière Mise à Jour | 2023-11-15 |
Date de Publication | 2017-09-12 |
Évaluation | 4.06/5 Total 79 Évaluations |
Développeur | https://james-coyle.dev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/JamesCoyle/downloads-extention |
URL de la Page d'Aide | https://github.com/JamesCoyle/downloads-extention/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Download Manager", "version": "4.1.1", "short_name": "Downloads", "author": "James Coyle", "description": "A less intrusive way to access your recent downloads", "icons": { "512": "icon.png" }, "permissions": [ "downloads", "downloads.open", "downloads.shelf", "storage", "sidePanel" ], "optional_permissions": [ "notifications" ], "action": { "default_popup": "popup.html", "default_title": "Downloads" }, "options_page": "options.html", "commands": { "_execute_action": { "suggested_key": { "windows": "Alt+J", "mac": "Alt+J", "chromeos": "Alt+J", "linux": "Alt+J" } } }, "background": { "type": "module", "service_worker": "background.js" }, "side_panel": { "default_path": "sidePanel.html" } } |