Property Price History

Property Price History

Enables you to see a property's price history on Rightmove.co.uk

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Property Price History",
  "version": "0.0.3",
  "manifest_version": 3,
  "description": "Enables you to see a property's price history on Rightmove.co.uk",
  "content_scripts": [
    {
      "matches": [
        "https://www.rightmove.co.uk/*"
      ],
      "css": [
        "rightmove-enhancement-suite.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icons/icon16.png",
    "32": "images/icons/icon32.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}