HTTP Commander
provide additional functionality for HTTP Commander - web file manager
Qu'est-ce que HTTP Commander ?
HTTP Commander est une extension Chrome développée par https://element-it.com, et sa fonction principale est "provide additional functionality for HTTP Commander - web file manager".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HTTP Commander
Téléchargez les fichiers d'extension HTTP Commander 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
HTTP Commander extension provide some additional functionality for Chrome users of HTTP Commander web application. Current version allow to download selected folders with restore of folders structure on client side. In you did selected some folder for download, then all files from that folder and its sub-folders will be downloaded and folder structure will be restored on client side (in "Downloads" folder). New features will be added in future versions.
Informations de Base sur l'Extension
Nom | HTTP Commander |
ID | emiplbkkiabideffmpogkbbogkmofgph |
URL Officiel | https://chromewebstore.google.com/detail/http-commander/emiplbkkiabideffmpogkbbogkmofgph |
Description | provide additional functionality for HTTP Commander - web file manager |
Taille du Fichier | 40.94 KB |
Nombre d'Installations | 11,679 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2017-05-24 |
Date de Publication | 2017-05-23 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://element-it.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx |
URL de la Page d'Aide | http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HTTP Commander", "description": "provide additional functionality for HTTP Commander - web file manager", "version": "1.0.3", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_title": "HTTP Commander helper extension.", "default_popup": "pages\/popup.html" }, "background": { "scripts": [ "scripts\/bg.js" ], "persistent": false }, "permissions": [ "tabs", "downloads", "storage", "declarativeContent", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "include_globs": [ "*Default.aspx*" ], "js": [ "scripts\/content.js" ] } ], "options_ui": { "page": "pages\/options.html", "chrome_style": true } } |