TradeMe Property Assistant

TradeMe Property Assistant

Show travel time to your workplace when you look at property on TradeMe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TradeMe Property Assistant",
  "version": "0.4",
  "description": "Show travel time to your workplace when you look at property on TradeMe",
  "content_scripts": [
    {
      "matches": [
        "https://www.trademe.co.nz/*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "defaults.js",
        "components/traveltime.js",
        "contentscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://maps.googleapis.com/",
    "http://www.watchmystreet.co.nz/",
    "storage"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "img/*"
  ],
  "icons": {
    "128": "img/icon-128.png"
  }
}