TrainingPeaks Weather
Shows the forcast the next 7 days in TraningPeaks.
Qu'est-ce que TrainingPeaks Weather ?
TrainingPeaks Weather est une extension Chrome développée par Christophe Balestra, et sa fonction principale est "Shows the forcast the next 7 days in TraningPeaks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TrainingPeaks Weather
Téléchargez les fichiers d'extension TrainingPeaks Weather au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Using your current location this extension adds the weather forecast in Training Peaks
Informations de Base sur l'Extension
Nom | TrainingPeaks Weather |
ID | jmeocmjinbnoibagkgppoojgjimplllb |
URL Officiel | https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb |
Description | Shows the forcast the next 7 days in TraningPeaks. |
Taille du Fichier | 45.1 KB |
Nombre d'Installations | 452 |
Version Actuelle | 1.04 |
Dernière Mise à Jour | 2022-04-26 |
Date de Publication | 2020-07-07 |
Évaluation | 4.50/5 Total 4 Évaluations |
Développeur | Christophe Balestra |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |