Locatio

Locatio

Enhance your property search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Locatio",
  "description": "Enhance your property search",
  "version": "1.3",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "*://*.trademe.co.nz/*",
    "*://trademe.co.nz/*",
    "*://*.lodge.co.nz/*",
    "*://lodge.co.nz/*",
    "*://koordinates.com/services/query/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.trademe.co.nz/property/*-property-*/auction-*",
        "*://*.trademe.co.nz/Browse/Listing*",
        "*://trademe.co.nz/property/*-property-*/auction-*",
        "*://trademe.co.nz/Browse/Listing*",
        "*://*.lodge.co.nz/Browse-Properties/*",
        "*://lodge.co.nz/Browse-Properties/*"
      ],
      "js": [
        "js/app.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}