Realestate.com.au marketing price finder

Realestate.com.au marketing price finder

Extract and display the marketing price from realestate.com.au

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Realestate.com.au marketing price finder",
  "author": "PatchOnKnee",
  "version": "0.1",
  "description": "Extract and display the marketing price from realestate.com.au",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://www.realestate.com.au/*"
      ]
    }
  ],
  "icons": {
    "240": "images/icon-240.png"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "scripts/service-worker.js"
  }
}