HTTP Commander

provide additional functionality for HTTP Commander - web file manager

HTTP Commander là gì?

HTTP Commander là một tiện ích mở rộng Chrome được phát triển bởi https://element-it.com, và tính năng chính của nó là "provide additional functionality for HTTP Commander - web file manager".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng HTTP Commander

Tải xuống các tệp mở rộng HTTP Commander dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HTTP Commander HTTP Commander
ID emiplbkkiabideffmpogkbbogkmofgph
URL Chính Thức https://chromewebstore.google.com/detail/http-commander/emiplbkkiabideffmpogkbbogkmofgph
Mô tả provide additional functionality for HTTP Commander - web file manager
Kích Thước Tệp 40.94 KB
Số Lần Cài Đặt 11,679
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2017-05-24
Ngày Phát Hành 2017-05-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://element-it.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
URL Trang Trợ Giúp http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
Ngôn Ngữ Được Hỗ Trợ 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
    }
}