initial commit of browser extension

This commit is contained in:
2025-07-30 17:03:59 -05:00
parent a05cbc3d12
commit ae5cd721a8
7 changed files with 19318 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "Verint IVA Extension",
"description": "Verint IVA Side-panel Extension",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "service-worker.js"
},
"side_panel": {
"default_path": "src/pages/side-panel/index.html"
},
"permissions": ["sidePanel", "storage"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_icon": "icon.png"
},
"web_accessible_resources": [ {
"matches": [ "*://*/*" ],
"resources": [ "assets/js/*.js", "assets/css/*.css", "assets/svg/*.svg", "assets/png/*.png", "icon.svg", "blob/*" ]
} ]
}