feat: Add file manager plugin and update store configuration.

This commit is contained in:
2026-01-03 14:31:02 +08:00
parent 93b523b082
commit a8f851d0ad
2 changed files with 23 additions and 23 deletions

View File

@@ -5,7 +5,7 @@
"author": "GoTunnel Official", "author": "GoTunnel Official",
"run_at": "client", "run_at": "client",
"type": "app", "type": "app",
"icon": "icons/file-manager.svg", "icon": "https://git.92coco.cn:8443/flik/GoTunnel-Plugins/raw/branch/main/icons/file-manager.svg",
"homepage": "https://github.com/flik/GoTunnel-Plugins", "homepage": "https://github.com/flik/GoTunnel-Plugins",
"config_schema": [ "config_schema": [
{ {

View File

@@ -1,23 +1,23 @@
[ [
{ {
"name": "file-manager", "name": "file-manager",
"version": "2.0.0", "version": "2.0.0",
"description": "Web 文件管理器,提供远程文件浏览、上传、下载和管理功能", "description": "Web 文件管理器,提供远程文件浏览、上传、下载和管理功能",
"author": "GoTunnel Official", "author": "GoTunnel Official",
"run_at": "client", "run_at": "client",
"type": "app", "type": "app",
"icon": "icons/file-manager.svg", "icon": "https://git.92coco.cn:8443/flik/GoTunnel-Plugins/raw/branch/main/icons/file-manager.svg",
"homepage": "https://github.com/flik/GoTunnel-Plugins", "homepage": "https://github.com/flik/GoTunnel-Plugins",
"config_schema": [ "config_schema": [
{ {
"key": "root_path", "key": "root_path",
"label": "根目录", "label": "根目录",
"type": "string", "type": "string",
"default": ".", "default": ".",
"description": "文件管理的根目录路径,所有操作将限制在此目录内" "description": "文件管理的根目录路径,所有操作将限制在此目录内"
} }
], ],
"download_url": "https://git.92coco.cn:8443/flik/GoTunnel-Plugins/raw/branch/main/plugins/file-manager/plugin.js", "download_url": "https://git.92coco.cn:8443/flik/GoTunnel-Plugins/raw/branch/main/plugins/file-manager/plugin.js",
"signature_url": "https://git.92coco.cn:8443/flik/GoTunnel-Plugins/raw/branch/main/plugins/file-manager/plugin.js.sig" "signature_url": "https://git.92coco.cn:8443/flik/GoTunnel-Plugins/raw/branch/main/plugins/file-manager/plugin.js.sig"
} }
] ]