Garmin activity downloader
Tool to bulk download training data from Garmin Connect
O que é Garmin activity downloader?
Garmin activity downloader é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Tool to bulk download training data from Garmin Connect".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Garmin activity downloader
Baixe arquivos de extensão Garmin activity downloader 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
Tool to bulk download training data from Garmin Connect. It adds the selected activities to a zip file and downloads it. It supports TCX and GPX format. NOTE: You need to be logged in at connect.garmin.com for this plugin to work. DISCLAIMER: I do not represent Garmin, nor am I working on their behalf. I developed this tool for my own needs. Although I doubt that this tool could cause any harm I should say that you are using it on your own risk. I am not taking any responsibility for any kind of damage it may cause.
Informações Básicas da Extensão
Nome | Garmin activity downloader |
ID | himhggflahpnjikoddlngaopcigalcjh |
URL Oficial | https://chromewebstore.google.com/detail/garmin-activity-downloade/himhggflahpnjikoddlngaopcigalcjh |
Descrição | Tool to bulk download training data from Garmin Connect |
Tamanho do Arquivo | 38.5 KB |
Contagem de Instalações | 7,314 |
Versão Atual | 1.0.1 |
Última Atualização | 2016-08-07 |
Data de Publicação | 2016-08-07 |
Classificação | 1.18/5 Total de 33 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Garmin activity downloader", "description": "Tool to bulk download training data from Garmin Connect", "version": "1.0.1", "browser_action": { "default_title": "Download TCX", "default_icon": "icon.png", "default_popup": "main.html" }, "content_scripts": [ { "matches": [ "*:\/\/connect.garmin.com\/minactivities" ], "js": [ "content.min.js" ], "all_frames": true } ], "short_name": "Garmin activity downloader", "permissions": [ "activeTab", "*:\/\/connect.garmin.com\/*", "https:\/\/ajax.googleapis.com\/" ] } |