HTTP Commander

provide additional functionality for HTTP Commander - web file manager

什麼是HTTP Commander?

HTTP Commander是由https://element-it.com開發的Chrome擴展程式,該擴展的主要功能是“provide additional functionality for HTTP Commander - web file manager”。

擴展截圖

screenshot

下載HTTP Commander擴展crx文件

下載HTTP Commander擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 HTTP Commander HTTP Commander
ID emiplbkkiabideffmpogkbbogkmofgph
官方網址 https://chromewebstore.google.com/detail/http-commander/emiplbkkiabideffmpogkbbogkmofgph
簡介 provide additional functionality for HTTP Commander - web file manager
檔案大小 40.94 KB
安裝次數 11,679
目前版本 1.0.3
更新時間 2017-05-24
上架時間 2017-05-23
評分 5.00/5 共 2 次評分
開發者 https://element-it.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
說明頁面URL http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
支援的語言 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
    }
}