Inspect and view changes in Take a Call - Communication for Business source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Take a Call - Communication for Business",
"description": "Extensão para chrome que implementa as melhores funcionalidades comunicativas para business.",
"offline_enabled": false,
"version": "1.5.0",
"manifest_version": 3,
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "assets/extension-icons/takeCall-128.png",
"48": "assets/extension-icons/takeCall-128.png",
"128": "assets/extension-icons/takeCall-128.png"
},
"content_scripts": [
{
"matches": [
"https://*.desk.blip.ai/*"
],
"js": [
"js/libraries/jquery-3.5.1.min.js",
"js/detect.js"
]
},
{
"matches": [
"https://*.blip.ai/*"
],
"js": [
"js/libraries/jquery-3.5.1.min.js",
"js/report.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"permissions": [
"scripting",
"activeTab",
"tabCapture",
"tabs",
"downloads",
"storage",
"identity",
"downloads.shelf",
"declarativeNetRequest",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"*.html",
"*.js",
"*.png",
"*.css",
"*.ttf",
"*.woff2",
"*.woff",
"*.svg"
],
"matches": [
"<all_urls>"
],
"extensions": []
}
],
"action": {
"default_icon": "assets/extension-icons/takeCall-128.png",
"default_popup": "html/popup.html"
},
"host_permissions": [
"https://www.googleapis.com/*",
"file://*",
"http://*/",
"https://*/"
],
"externally_connectable": {
"matches": [
"https://*.mobcall.com/*"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}