Zillow Scraper - Extract Data from Zillow

Zillow Scraper - Extract Data from Zillow

Scrape and extract properties from Zillow search results, and export to CSV/Excel with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.1.2",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgj/DX1QNoKHe7mcncVV4E++LgoXmeZbR62JjK65/K9QUSDo8bA87DVUR4ceF4cRpRqzufZkPmM5EjfSTGqJ0xvdhkrQJP1Si+dWecjt/k2dGUwkfW4TKQAn7pNdLUniShNCLiL6gc9CzK3LcxrEH0wrfqUmwiwoMC5QtgpSLaIK+psj91QejDH+J1hd9a94DteLULWDUgtz3e3KjTSctV1Yr8hzD1W6r+f8zrMW+UwUhC45pdLIOPoG2J7vnWYhQfoSmmg2dEako9Rcv4UnQgB5BKgP1XXPWAzPm8fdHBPWvn4Y2mOTOFsg/JHkPkDrtpCfpFA675o1P638x9RjyEQIDAQAB",
  "homepage_url": "https://chrome.google.com/webstore/detail/nlieamdebnjhijflpbkbaijnjpdpieoh",
  "manifest_version": 3,
  "oauth2": {
    "client_id": "755092425733-j0vuc342b9q626if61hodvcps0ce4i36.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ],
    "web_client_id": "755092425733-n6gsqpml2gjps41rcj3fpdbl3v4n5u3k.apps.googleusercontent.com"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "icons": {
    "16": "public/lib/images/logo_16.png",
    "32": "public/lib/images/logo_32.png",
    "48": "public/lib/images/logo_48.png",
    "128": "public/lib/images/logo_128.png"
  },
  "permissions": [
    "storage",
    "identity",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.converts.cc/*",
    "*://*.bing.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.zillow.com/*"
      ],
      "js": [
        "public/lib/js/jquery-3.5.1.min.js",
        "Content.js"
      ],
      "css": [
        "css/Content.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_popup": "popup.html"
  }
}