TrainingPeaks Weather
Shows the forcast the next 7 days in TraningPeaks.
O que é TrainingPeaks Weather?
TrainingPeaks Weather é uma extensão do Chrome desenvolvida por Christophe Balestra, e sua principal característica é "Shows the forcast the next 7 days in TraningPeaks.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TrainingPeaks Weather
Baixe arquivos de extensão TrainingPeaks Weather no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Using your current location this extension adds the weather forecast in Training Peaks
Informações Básicas da Extensão
Nome | TrainingPeaks Weather |
ID | jmeocmjinbnoibagkgppoojgjimplllb |
URL Oficial | https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb |
Descrição | Shows the forcast the next 7 days in TraningPeaks. |
Tamanho do Arquivo | 45.1 KB |
Contagem de Instalações | 452 |
Versão Atual | 1.04 |
Última Atualização | 2022-04-26 |
Data de Publicação | 2020-07-07 |
Classificação | 4.50/5 Total de 4 Avaliações |
Desenvolvedor | Christophe Balestra |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } ] } |