Zillow Data Exporter

Zillow Data Exporter

Export Zillow property listings to CSV or Excel in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zillow Data Exporter",
  "description": "Export Zillow property listings to CSV or Excel in one click.",
  "manifest_version": 3,
  "version": "0.0.46",
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "16x16.png",
      "48": "48x48.png",
      "128": "128x128.png"
    },
    "default_title": "Zillow Data Exporter"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.zillow.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://*.zillowdataexporter.com/*"
      ],
      "js": [
        "zillowdataexporter.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://*.propertydatalabs.com/*"
      ],
      "js": [
        "zillowdataexporter.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "16x16.png",
        "48x48.png",
        "128x128.png"
      ],
      "matches": [
        "https://*.zillow.com/*"
      ]
    },
    {
      "resources": [
        "menu.html"
      ],
      "matches": [
        "https://*.zillow.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://*.zillow.com/*",
    "https://*.zillowdataexporter.com/*",
    "https://*.propertydatalabs.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.zillowdataexporter.com/*",
      "*://*.propertydatalabs.com/*"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "downloads"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; img-src * 'self' data: https:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' https://*.googleusercontent.com/* https://*.zillow.com/* https://www.zillowdataexporter.com/ https://www.propertydatalabs.com/; object-src 'self'"
  }
}