Home buyer - beta

Home buyer - beta

"We are due a significant correction in house prices. I think we are beginning to see signs that correction may be starting." -…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Home buyer - beta",
  "short_name": "Tracks changes to property prices on the RightMove website.",
  "version": "1.7",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Home buyers!",
    "default_popup": "options.html"
  },
  "background": {
    "page": "homebuyer.html"
  },
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
  "content_scripts": [
    {
      "css": [
        "homebuyer.css"
      ],
      "js": [
        "firebase.js",
        "homebuyer.js"
      ],
      "matches": [
        "https://www.rightmove.co.uk/*find*",
        "https://www.rightmove.co.uk/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://www.gstatic.com/",
    "https://*.firebaseio.com/",
    "https://www.googleapis.com/"
  ],
  "web_accessible_resources": [
    "*.png"
  ]
}