TrainingPeaks Weather

Shows the forcast the next 7 days in TraningPeaks.

Hvad er TrainingPeaks Weather?

TrainingPeaks Weather er en Chrome-udvidelse udviklet af Christophe Balestra, og dens hovedfunktion er "Shows the forcast the next 7 days in TraningPeaks.".

Udvidelsesskærmbilleder

screenshot

Download TrainingPeaks Weather-udvidelses-CRX-fil

Download TrainingPeaks Weather-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Using your current location this extension adds the weather forecast in Training Peaks                    

Grundlæggende oplysninger om udvidelsen

Navn TrainingPeaks Weather TrainingPeaks Weather
ID jmeocmjinbnoibagkgppoojgjimplllb
Officiel URL https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb
Beskrivelse Shows the forcast the next 7 days in TraningPeaks.
Filstørrelse 45.1 KB
Antal Installationer 452
Nuværende Version 1.04
Senest Opdateret 2022-04-26
Udgivelsesdato 2020-07-07
Bedømmelse 4.50/5 Samlet 4 Bedømmelser
Udvikler Christophe Balestra
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TrainingPeaks Weather",
    "version": "1.04",
    "description": "Shows the forcast the next 7 days in TraningPeaks.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/app.trainingpeaks.com\/*"
            ]
        }
    ]
}