Garmin Steps Notification

Garmin Steps Notification

Get notified of current number of Steps from Garmin Connect

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Garmin Steps Notification",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Get notified of current number of Steps from Garmin Connect",
  "browser_action": {
    "default_icon": "favicon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "https://*.garmin.com/",
    "tabs",
    "storage"
  ],
  "content_security_policy": "default-src 'self'; connect-src *;"
}