2026-04-05 20:05:34 -04:00
|
|
|
{
|
|
|
|
|
"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",
|
2026-04-06 21:38:50 -04:00
|
|
|
"alarms"
|
2026-04-05 20:05:34 -04:00
|
|
|
],
|
|
|
|
|
"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"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|