NeighborWho - Ownership, Deed, and Lien Data

NeighborWho - Ownership, Deed, and Lien Data

Use NeighborWho to research additional property information such as Owners, Deeds and Lien information if available

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NeighborWho - Ownership, Deed, and Lien Data",
  "description": "Use NeighborWho to research additional property information such as Owners, Deeds and Lien information if available",
  "version": "1.0.7",
  "background": {
    "service_worker": "/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "/js/content.js"
      ],
      "css": [
        "/assets/css/style.css"
      ],
      "matches": [
        "https://*.zillow.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "/assets/images/nw-icon.png",
    "default_title": "NeighborWho"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "icons": {
    "16": "/assets/images/nw-icon.png",
    "32": "/assets/images/nw-icon.png",
    "64": "/assets/images/nw-icon.png",
    "128": "/assets/images/nw-icon.png"
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*"
      ],
      "matches": [
        "*://www.zillow.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://*.google.com/*",
    "https://*.gstatic.com/*",
    "*://www.neighborwho.com/*",
    "*://www.zillow.com/*"
  ]
}