36 lines
819 B
JSON
36 lines
819 B
JSON
{
|
|
"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'"
|
|
},
|
|
"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/*"
|
|
]
|
|
}
|
|
]
|
|
}
|