Inspect and view changes in Prospect Sidekick 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": "Prospect Sidekick",
"description": "Prospect Sidekick is a browser extension that uses GPT-4 to help salespeople generate the perfect responses to prospects & clients.",
"version": "4.0",
"host_permissions": [
"https://*.openai.com/"
],
"permissions": [
"storage",
"activeTab",
"notifications",
"https://prospectsidekick.tech"
],
"icons": {
"512": "assets/icons/hexagonal.png",
"513": "assets/icons/reset.png",
"514": "assets/icons/arrowBottom.png",
"515": "assets/icons/close.png"
},
"action": {},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"css/contentScript.css"
],
"js": [
"env.js",
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"popup.html",
"assets/icons/hexagonal.png",
"assets/icons/reset.png",
"assets/icons/arrowBottom.png",
"assets/icons/close.png"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
]
}