Home Scanner

Home Scanner

Scan homes in a radius

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Scan homes in a radius",
  "version": "2.0.2",
  "manifest_version": 3,
  "name": "Home Scanner",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "sidePanel",
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://zillow.com/*"
  ],
  "action": {
    "default_icon": "homescanner32.png"
  },
  "side_panel": {
    "default_path": "newtab.html"
  },
  "icons": {
    "128": "homescanner128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.hostcompliance.com/*",
        "*://*.homeaway.com/*",
        "*://*.vrbo.com/*",
        "*://*.google.com/maps*",
        "*://*.google.com/maps/place/*",
        "*://*.realtor.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*/newtab.html"
      ],
      "js": [
        "newtab.bundle.js"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "homescanner128.png",
        "homescanner32.png",
        "newtab.html",
        "/src/assets/img/no-photo.png"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}