Doorhacker: cash flow properties on Zillow

Doorhacker: cash flow properties on Zillow

Analyze returns of Zillow listings in one click and screen properties with the highest returns

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Doorhacker: cash flow properties on Zillow",
  "description": "Analyze returns of Zillow listings in one click and screen properties with the highest returns",
  "version": "0.0.9",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/logo16.png",
    "48": "/logo48.png",
    "128": "/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.zillow.com/*"
      ],
      "js": [
        "/content.js"
      ],
      "css": [
        "/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/house.png",
        "/musical.gif",
        "/activateCode.webp"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}