Inspect and view changes in retreva-ai 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": "retreva-ai",
"version": "1.0",
"permissions": [
"identity",
"activeTab",
"scripting"
],
"host_permissions": [
"https://*.click2sell.com/*",
"https://*.retreva.com/*"
],
"background": {
"service_worker": "service-worker.js"
},
"action": {
"default_popup": "",
"default_icon": {}
},
"content_scripts": [
{
"matches": [
"https://*.click2sell.com/*",
"https://*.retreva.com/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"oauth2": {
"client_id": "369991222445-3avd37sagrccmjoenc1sv9kur6683v46.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
]
},
"web_accessible_resources": [
{
"resources": [
"index.html"
],
"matches": [
"https://*.click2sell.com/*",
"https://*.retreva.com/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self' chrome-extension://*"
}
}