Freemap.sk for Geocaching

Freemap.sk for Geocaching

Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Freemap.sk for Geocaching",
  "short_name": "fm4gc",
  "version": "1.0",
  "author": "Martin Ždila (Freemap Slovakia)",
  "description": "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.",
  "icons": {
    "48": "icons/icon-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.geocaching.com/map/"
      ],
      "js": [
        "common.js",
        "map.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.geocaching.com/play/*"
      ],
      "js": [
        "common.js",
        "play_map.js"
      ],
      "css": [
        "play_map.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.geocaching.com/geocache/*"
      ],
      "js": [
        "common.js",
        "geocache.js"
      ],
      "run_at": "document_end"
    }
  ]
}