TrainingPeaks Weather
Shows the forcast the next 7 days in TraningPeaks.
Cos'è TrainingPeaks Weather?
TrainingPeaks Weather è un'estensione di Chrome sviluppata da Christophe Balestra, e la sua funzione principale è "Shows the forcast the next 7 days in TraningPeaks.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TrainingPeaks Weather
Scarica i file di estensione TrainingPeaks Weather in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Using your current location this extension adds the weather forecast in Training Peaks
Informazioni di Base sull'Estensione
Nome | TrainingPeaks Weather |
ID | jmeocmjinbnoibagkgppoojgjimplllb |
URL Ufficiale | https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb |
Descrizione | Shows the forcast the next 7 days in TraningPeaks. |
Dimensione del File | 45.1 KB |
Conteggio Installazioni | 452 |
Versione Corrente | 1.04 |
Ultimo Aggiornamento | 2022-04-26 |
Data di Pubblicazione | 2020-07-07 |
Valutazione | 4.50/5 Totale 4 Valutazioni |
Sviluppatore | Christophe Balestra |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } ] } |