initial commit of browser extension
This commit is contained in:
23
browser-extension/manifest.json
Normal file
23
browser-extension/manifest.json
Normal 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/*" ]
|
||||
} ]
|
||||
}
|
||||
Reference in New Issue
Block a user