TrainingPeaks Weather
Shows the forcast the next 7 days in TraningPeaks.
Apa itu TrainingPeaks Weather?
TrainingPeaks Weather adalah ekstensi Chrome yang dikembangkan oleh Christophe Balestra, dan fitur utamanya adalah "Shows the forcast the next 7 days in TraningPeaks.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi TrainingPeaks Weather
Unduh file ekstensi TrainingPeaks Weather dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Using your current location this extension adds the weather forecast in Training Peaks
Informasi Dasar Ekstensi
Nama | TrainingPeaks Weather |
ID | jmeocmjinbnoibagkgppoojgjimplllb |
URL Resmi | https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb |
Deskripsi | Shows the forcast the next 7 days in TraningPeaks. |
Ukuran File | 45.1 KB |
Jumlah Instalasi | 452 |
Versi Saat Ini | 1.04 |
Terakhir Diperbarui | 2022-04-26 |
Tanggal Publikasi | 2020-07-07 |
Penilaian | 4.50/5 Total 4 Penilaian |
Pengembang | Christophe Balestra |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/*" ] } ] } |