TrainingPeaks Weather
Shows the forcast the next 7 days in TraningPeaks.
Co to jest TrainingPeaks Weather?
TrainingPeaks Weather to rozszerzenie Chrome opracowane przez Christophe Balestra, a jego główną funkcją jest „Shows the forcast the next 7 days in TraningPeaks.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TrainingPeaks Weather
Pobierz pliki rozszerzeń TrainingPeaks Weather w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Using your current location this extension adds the weather forecast in Training Peaks
Podstawowe informacje o rozszerzeniu
Nazwa | TrainingPeaks Weather |
ID | jmeocmjinbnoibagkgppoojgjimplllb |
Oficjalny URL | https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb |
Opis | Shows the forcast the next 7 days in TraningPeaks. |
Rozmiar pliku | 45.1 KB |
Liczba instalacji | 452 |
Aktualna Wersja | 1.04 |
Ostatnia Aktualizacja | 2022-04-26 |
Data Publikacji | 2020-07-07 |
Ocena | 4.50/5 Łącznie 4 Oceny |
Deweloper | Christophe Balestra |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } ] } |