Inspect and view changes in Protege TODOS CRM 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Protege TODOS CRM",
"description": "Web CRM com multicontas",
"default_locale": "pt_BR",
"version": "2.0.1",
"action": {
"default_title": "Protege TODOS CRM",
"default_icon": "icon.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"tabs",
"cookies"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"host_permissions": [
"https://web.whatsapp.com/*",
"https://app.coderlicences.com/*"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"*.js",
"_locales/*",
"*.png",
"*.webp"
],
"matches": [
"https://web.whatsapp.com/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://web.whatsapp.com/*"
],
"js": [
"contentScript.js"
]
}
]
}