TrainingPeaks Weather

Shows the forcast the next 7 days in TraningPeaks.

Wat is TrainingPeaks Weather?

TrainingPeaks Weather is een Chrome-extensie ontwikkeld door Christophe Balestra, en de belangrijkste functie is "Shows the forcast the next 7 days in TraningPeaks.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TrainingPeaks Weather

Download TrainingPeaks Weather-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam TrainingPeaks Weather TrainingPeaks Weather
ID jmeocmjinbnoibagkgppoojgjimplllb
Officiële URL https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb
Beschrijving Shows the forcast the next 7 days in TraningPeaks.
Bestandsgrootte 45.1 KB
Aantal Installaties 452
Huidige Versie 1.04
Laatst Bijgewerkt 2022-04-26
Publicatiedatum 2020-07-07
Beoordeling 4.50/5 Totaal 4 Beoordelingen
Ontwikkelaar Christophe Balestra
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}