GeocachingUtils

GeocachingUtils

A collection of useful features that enhances geocaching.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GeocachingUtils",
  "description": "__MSG_extension_description__",
  "version": "2.2.0",
  "permissions": [
    "storage"
  ],
  "options_page": "settings/settings.html",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://www.geocaching.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.1.0.min.js",
        "js/common.js",
        "js/feature/friendLogList.js",
        "js/feature/autoDecryptHint.js",
        "js/feature/logEditor/logEditorCommon.js",
        "js/feature/logEditor/logEditorInsertionPopup.js",
        "js/feature/logEditor/logEditorWordCount.js",
        "js/start.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "img/friendLogList/spinner.gif",
    "img/appIcon/appIcon16.png",
    "img/appIcon/appIcon26.png",
    "img/logEditor/*"
  ],
  "browser_action": {
    "default_title": "Geocaching Utils",
    "default_icon": {
      "16": "img/appIcon/appIcon16.png",
      "48": "img/appIcon/appIcon48.png"
    },
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "img/appIcon/appIcon16.png",
    "48": "img/appIcon/appIcon48.png",
    "128": "img/appIcon/appIcon128.png"
  },
  "manifest_version": 2
}