Extension para operar con Call Center de Falabella
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Falabella Call Center",
"version": "1.0.18",
"short_name": "Falabella CallCenter",
"description": "Extension para operar con Call Center de Falabella",
"manifest_version": 3,
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https://api.k-maleon.cl/*",
"https://apis.digitalpaymentsspa.com/api/*",
"https://gw.digitalpaymentsspa.com/*"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https://api.k-maleon.cl/*",
"https://apis.digitalpaymentsspa.com/api/*",
"https://gw.digitalpaymentsspa.com/*"
],
"exclude_globs": [
"*metrix*",
"*online-metrix*",
"*info_pci_lan*",
"*info_vbv_lan*",
"*info_msc_lan*"
],
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"content_security_policy": {
"default-src": "self",
"script-src": "self",
"style-src": "self",
"unsafe-inline": ""
}
}