PropertyData - Data, Info & Analysis

PropertyData - Data, Info & Analysis

Adds property market data to Rightmove, Zoopla & OnTheMarket for sale listings, adds quick links to Google Maps

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PropertyData - Data, Info & Analysis",
  "version": "3.6",
  "description": "Adds property market data to Rightmove, Zoopla & OnTheMarket for sale listings, adds quick links to Google Maps",
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "https://www.rightmove.co.uk/*",
    "https://*.zoopla.co.uk/*",
    "https://www.onthemarket.com/*",
    "https://propertydata.co.uk/*",
    "https://www.google.co.uk/maps/*",
    "https://www.google.com/maps/*"
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.rightmove.co.uk/*property-for-sale/*",
        "https://www.rightmove.co.uk/properties/*",
        "https://www.zoopla.co.uk/for-sale/details/*",
        "https://ww2.zoopla.co.uk/for-sale/details/*",
        "https://www.zoopla.co.uk/to-rent/details/*",
        "https://ww2.zoopla.co.uk/to-rent/details/*",
        "https://www.onthemarket.com/details/*",
        "https://propertydata.co.uk/*",
        "https://www.google.co.uk/maps/*",
        "https://www.google.com/maps/*"
      ],
      "js": [
        "jquery-3.5.0.min.js",
        "script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "manifest_version": 3
}