TrainingPeaks Weekly Progress

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

Was ist TrainingPeaks Weekly Progress?

TrainingPeaks Weekly Progress ist eine Chrome-Erweiterung, die von tedbrakob entwickelt wurde, und ihr Hauptmerkmal ist "Shows current weekly progress relative to planned values on TrainingPeaks calendar.".

Erweiterungsscreenshots

screenshot

TrainingPeaks Weekly Progress-Erweiterungs-CRX-Datei herunterladen

Laden Sie TrainingPeaks Weekly Progress-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Adds indicators in the summary pane of the TrainingPeaks calendar page to show current progress toward weekly workout plans                    

Grundlegende Informationen zur Erweiterung

Name TrainingPeaks Weekly Progress TrainingPeaks Weekly Progress
ID aoiedkonejnpfmbbeofgdkfafegdllaa
Offizielle URL https://chromewebstore.google.com/detail/trainingpeaks-weekly-prog/aoiedkonejnpfmbbeofgdkfafegdllaa
Beschreibung Shows current weekly progress relative to planned values on TrainingPeaks calendar.
Dateigröße 128 KB
Installationsanzahl 95
Aktuelle Version 1.0.1
Letztes Update 2022-02-24
Veröffentlichungsdatum 2022-02-24
Entwickler tedbrakob
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tedbrakob/training-peaks-weekly-progress
Unterstützte Sprachen en
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"
    }
}