HTTP Commander

provide additional functionality for HTTP Commander - web file manager

What is HTTP Commander?

HTTP Commander is a Chrome extension developed by https://element-it.com, and its main feature is "provide additional functionality for HTTP Commander - web file manager".

Extension Screenshots

screenshot

Download HTTP Commander Extension CRX File

Download HTTP Commander extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name HTTP Commander HTTP Commander
ID emiplbkkiabideffmpogkbbogkmofgph
Official URL https://chromewebstore.google.com/detail/http-commander/emiplbkkiabideffmpogkbbogkmofgph
Description provide additional functionality for HTTP Commander - web file manager
File Size 40.94 KB
Installation Count 11,679
Current Version 1.0.3
Last Updated 2017-05-24
Publish Date 2017-05-23
Rating 5.00/5 Total 2 Ratings
Developer https://element-it.com
Email [email protected]
Payment Type free
Extension Website http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
Help Page URL http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
Supported Languages 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
    }
}