Advanced Property Insights

Advanced Property Insights

Unlock Postcode Data for Properties on Rightmove, Zoopla and On The Market.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "author": "__MSG_extAuthor__",
  "version": "1.0.1",
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "permissions": [],
  "background": {
    "persistent": false,
    "page": "pages/background.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/manifest.js",
        "js/vendor.js",
        "js/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://www.rightmove.co.uk/*property-for-sale/property*",
        "https://www.rightmove.co.uk/*new-homes-for-sale/property*",
        "https://www.zoopla.co.uk/for-sale/details/*",
        "https://www.zoopla.co.uk/new-homes/details/*",
        "https://www.onthemarket.com/details/*"
      ],
      "all_frames": false
    }
  ],
  "default_locale": "en",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "js/content.js"
  ]
}