TrainingPeaks Weather

Shows the forcast the next 7 days in TraningPeaks.

What is TrainingPeaks Weather?

TrainingPeaks Weather is a Chrome extension developed by Christophe Balestra, and its main feature is "Shows the forcast the next 7 days in TraningPeaks.".

Extension Screenshots

screenshot

Download TrainingPeaks Weather Extension CRX File

Download TrainingPeaks Weather extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name TrainingPeaks Weather TrainingPeaks Weather
ID jmeocmjinbnoibagkgppoojgjimplllb
Official URL https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb
Description Shows the forcast the next 7 days in TraningPeaks.
File Size 45.1 KB
Installation Count 452
Current Version 1.04
Last Updated 2022-04-26
Publish Date 2020-07-07
Rating 4.50/5 Total 4 Ratings
Developer Christophe Balestra
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}