- Full VPM Uploader feature set (auth, users, folders, AMPP monitor) - HTTP upload via presigned S3 URLs with XHR progress tracking - UDP upload mode with relay server (WebRTC DataChannel + HTTP fallback) - S3 Admin settings with live Test Connection (upload+delete verify) - UDP Relay Admin settings with health check - Standalone UDP relay server (Node.js + Docker) with multipart S3 assembly - Chrome Extension (Manifest v3): popup, background, content script - Dynamic S3 client — reconfigures on save without restart - Dark/light theme, full AMPP job monitor - docker-compose.yml with dragon-wind + udp-relay services Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
36 lines
786 B
JSON
36 lines
786 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Dragon Wind Uploader",
|
|
"version": "1.0.0",
|
|
"description": "Fast dual-mode file upload for broadcast professionals. HTTP for reliability, UDP for speed.",
|
|
"permissions": [
|
|
"storage",
|
|
"activeTab",
|
|
"scripting",
|
|
"sockets"
|
|
],
|
|
"host_permissions": [
|
|
"https://*/*",
|
|
"http://localhost:3000/*",
|
|
"http://*/*"
|
|
],
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"48": "images/icon-48.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Dragon Wind Upload"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
]
|
|
}
|