Rightmove Improver

Rightmove Improver

This extension adds maximum internet speed to the page on rightmove

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rightmove Improver",
  "short_name": "Rightmove Improver",
  "description": "This extension adds maximum internet speed to the page on rightmove",
  "version": "0.1.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "About"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.rightmove.co.uk/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}