Property Address Scanner

Property Address Scanner

Extract property addresses from any web page to CSV or Excel. See full property and owner details with a PropertyRadar subscription

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Property Address Scanner",
  "description": "Extract property addresses from any web page to CSV or Excel. See full property and owner details with a PropertyRadar subscription",
  "version": "1.6",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self' https://s3.amazonaws.com/ https://files.propertyradar.com/;"
  },
  "icons": {
    "16": "assets/images/16.png",
    "32": "assets/images/32.png",
    "48": "assets/images/48.png",
    "64": "assets/images/64.png",
    "128": "assets/images/128.png"
  },
  "action": {
    "default_title": "PropertyRadar",
    "default_icon": "assets/images/favicon.png"
  },
  "host_permissions": [
    "*://*.propertyradar.com/"
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs",
    "clipboardWrite",
    "cookies"
  ],
  "background": {
    "service_worker": "lib/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "lib/background.css",
        "lib/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "flutter_service_worker.js",
        "sidebar.html",
        "main.dart.js",
        "logo.gif",
        "lib/background.css",
        "lib/content.css",
        "lib/content.js",
        "vendor/fingerprint.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}