Add initial project files for MTH Video Manifest Capture extension

This commit is contained in:
Minidu Thiranjaya
2025-03-05 15:20:26 +05:30
parent aa71fe6bb9
commit 823492346a
9 changed files with 722 additions and 0 deletions

25
manifest.json Normal file
View File

@@ -0,0 +1,25 @@
{
"manifest_version": 3,
"name": "MTH Video Manifest Capture",
"version": "1.0",
"description": "Captures video manifest URLs.",
"permissions": [
"webRequest",
"activeTab",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}
}