TrainingPeaks Weather

Shows the forcast the next 7 days in TraningPeaks.

Co je TrainingPeaks Weather?

TrainingPeaks Weather je rozšíření Chrome vyvinuté Christophe Balestra, a jeho hlavní funkcí je „Shows the forcast the next 7 days in TraningPeaks.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření TrainingPeaks Weather

Stáhněte si soubory rozšíření TrainingPeaks Weather ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název TrainingPeaks Weather TrainingPeaks Weather
ID jmeocmjinbnoibagkgppoojgjimplllb
Oficiální URL https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb
Popis Shows the forcast the next 7 days in TraningPeaks.
Velikost souboru 45.1 KB
Počet instalací 452
Aktuální Verze 1.04
Poslední Aktualizace 2022-04-26
Datum Vydání 2020-07-07
Hodnocení 4.50/5 Celkem 4 Hodnocení
Vývojář Christophe Balestra
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
            ]
        }
    ]
}