Property Price - Extension

Property Price - Extension

Allows viewing info on house on trademe platform

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 Price - Extension",
  "version": "0.0.2",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.trademe.co.nz/a/property/residential/sale/*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "contentScript.js"
      ],
      "css": [
        "propertyprice.css"
      ]
    }
  ],
  "host_permissions": [
    "https://www.propertyprice.co.nz/"
  ],
  "description": "Allows viewing info on house on trademe platform"
}