moving copilot work under common folder and adding _studio_dependencies

This commit is contained in:
2025-08-20 09:30:17 -05:00
parent bc11ec76d0
commit 403c73fc83
10 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
{
"name": "Verint Copilot",
"description": "Verint Copilot 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", "tabs"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"web_accessible_resources": [
{
"matches": ["*://*/*"],
"resources": [
"assets/js/*.js",
"assets/css/*.css",
"assets/svg/*.svg",
"assets/png/*.png",
"icon.svg",
"blob/*"
]
}
]
}