Show Tenure for Rightmove

Show Tenure for Rightmove

This extension simplifies your Rightmove search by: - displaying the tenure of each property on the results page (without you…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Show Tenure for Rightmove",
  "version": "1.0",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "rightmovelogo.png",
      "32": "rightmovelogo.png",
      "48": "rightmovelogo.png",
      "128": "rightmovelogo.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.rightmove.co.uk/property-for-sale/find.html?*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}