Geocaching Logbook Generator

Geocaching Logbook Generator

Generates GC Logbook directly from geocaching.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "GC Logbook Generator",
  "version": "1.1",
  "description": "Generates GC Logbook directly from geocaching.com",
  "icons": {
    "48": "icon-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.geocaching.com/geocache/*"
      ],
      "js": [
        "gcloggen.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "*://www.cachelabel-generator.de/*"
  ]
}