TrainingPeaks Weekly Progress

TrainingPeaks Weekly Progress

Shows current weekly progress relative to planned values on TrainingPeaks calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TrainingPeaks Weekly Progress",
  "version": "1.0.1",
  "description": "Shows current weekly progress relative to planned values on TrainingPeaks calendar.",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://app.trainingpeaks.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "weekly-progress.js"
      ],
      "matches": [
        "*://app.trainingpeaks.com/*"
      ]
    }
  ],
  "icons": {
    "128": "images/icon.png"
  }
}