Export Property Data from Zillow to CSV/Excel with 50+ fields and proper data types
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extShortDesc__",
"default_locale": "en",
"version": "1.0.2",
"minimum_chrome_version": "95",
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"js": [
"js/content.js"
],
"matches": [
"https://www.zillow.com/*"
],
"run_at": "document_start",
"world": "MAIN"
},
{
"js": [
"js/content_isolated.js"
],
"matches": [
"https://www.zillow.com/*"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png",
"300": "icons/icon300.png"
},
"action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png",
"300": "icons/icon300.png"
},
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"permissions": [
"alarms",
"storage",
"identity"
],
"host_permissions": [
"https://www.zillow.com/*"
],
"incognito": "spanning",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}