HTTP Commander

provide additional functionality for HTTP Commander - web file manager

Co je HTTP Commander?

HTTP Commander je rozšíření Chrome vyvinuté https://element-it.com, a jeho hlavní funkcí je „provide additional functionality for HTTP Commander - web file manager“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření HTTP Commander

Stáhněte si soubory rozšíření HTTP Commander ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název HTTP Commander HTTP Commander
ID emiplbkkiabideffmpogkbbogkmofgph
Oficiální URL https://chromewebstore.google.com/detail/http-commander/emiplbkkiabideffmpogkbbogkmofgph
Popis provide additional functionality for HTTP Commander - web file manager
Velikost souboru 40.94 KB
Počet instalací 11,679
Aktuální Verze 1.0.3
Poslední Aktualizace 2017-05-24
Datum Vydání 2017-05-23
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://element-it.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
URL Stránky Nápovědy http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
Podporované Jazyky 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
    }
}