HTTP Commander
provide additional functionality for HTTP Commander - web file manager
Was ist HTTP Commander?
HTTP Commander ist eine Chrome-Erweiterung, die von https://element-it.com entwickelt wurde, und ihr Hauptmerkmal ist "provide additional functionality for HTTP Commander - web file manager".
Erweiterungsscreenshots
HTTP Commander-Erweiterungs-CRX-Datei herunterladen
Laden Sie HTTP Commander-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | HTTP Commander |
ID | emiplbkkiabideffmpogkbbogkmofgph |
Offizielle URL | https://chromewebstore.google.com/detail/http-commander/emiplbkkiabideffmpogkbbogkmofgph |
Beschreibung | provide additional functionality for HTTP Commander - web file manager |
Dateigröße | 40.94 KB |
Installationsanzahl | 11,679 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2017-05-24 |
Veröffentlichungsdatum | 2017-05-23 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://element-it.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx |
Hilfeseite URL | http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx |
Unterstützte Sprachen | 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 } } |