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”。
扩展截图
下载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 |
ID | emiplbkkiabideffmpogkbbogkmofgph |
官方URL | 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 } } |