Data Ranch Zillow Plow

Data Ranch Zillow Plow

Free & Simple Zillow Scraper.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Data Ranch Zillow Plow",
  "version": "0.4",
  "description": "Free & Simple Zillow Scraper.",
  "icons": {
    "256": "images/256x256.png"
  },
  "background": {
    "service_workers": []
  },
  "permissions": [],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/ff_content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "*://www.zillow.com/homes/*"
      ]
    }
  ]
}