Property Tracker

Property Tracker

Tracks changes to property prices on the RightMove website.

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 Tracker",
  "version": "1.1.19",
  "icons": {
    "128": "icon128.png"
  },
  "description": "Tracks changes to property prices on the RightMove website.",
  "action": {
    "default_icon": "icon3.png",
    "default_popup": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.rightmove.co.uk/*find*",
        "https://www.rightmove.co.uk/property-for-sale/find*",
        "https://www.rightmove.co.uk/properties/*"
      ],
      "css": [
        "ptrack.css"
      ],
      "js": [
        "jquery.js",
        "popper.min.js",
        "tippy.min.js",
        "ptrack.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "jquery.js",
        "brickpal.png",
        "calc.png",
        "down.png",
        "same.png",
        "up.png"
      ],
      "matches": [
        "https://www.rightmove.co.uk/*"
      ]
    }
  ],
  "permissions": [],
  "host_permissions": [
    "https://us-central1-housetrack-uk.cloudfunctions.net/"
  ]
}