Inspect and view changes in Comp Crunch (Analyze Zillow Data) 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",
"name": "Comp Crunch (Analyze Zillow Data)",
"description": "Analyze real estate data on Zillow",
"version": "0.0.1.1",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Open the popup"
},
"permissions": [
"webRequest",
"activeTab"
],
"host_permissions": [
"https://www.zillow.com/search/GetSearchPageState.htm*",
"https://www.zillow.com/async-create-search-page-state*",
"https://www.zillow.com/myzillow/favorites*",
"https://us-central1-comp-crunch-c82c5.cloudfunctions.net/startProExport",
"https://*.firebaseapp.com/*",
"https://*.googleapis.com/*"
],
"icons": {
"16": "comp-crunch-logo.png",
"48": "comp-crunch-logo.png",
"128": "comp-crunch-logo.png"
},
"background": {
"service_worker": "./static/js/background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": [
"https://*.zillow.com/*"
],
"js": [
"content.js"
]
}
]
}