Enhancements for Garmin Connect

Enhancements for Garmin Connect

Upgrade your experience using Garmin Connect Web with an enhanced exercise search, filtering by muscle groups, previews, and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Enhancements for Garmin Connect",
  "version": "1.0.0",
  "description": "Upgrade your experience using Garmin Connect on Web with an enhanced exercise search, filtering by muscle groups, previews, and more",
  "icons": {
    "16": "logo-16.png",
    "32": "logo-32.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "*://connect.garmin.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app.js"
      ],
      "matches": [
        "*://connect.garmin.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{5CFAA307-1C53-4C35-AF2F-4EDC372CA350}"
    }
  }
}