Garmin activity downloader

Tool to bulk download training data from Garmin Connect

Cos'è Garmin activity downloader?

Garmin activity downloader è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Tool to bulk download training data from Garmin Connect".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Garmin activity downloader

Scarica i file di estensione Garmin activity downloader 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Garmin activity downloader Garmin activity downloader
ID himhggflahpnjikoddlngaopcigalcjh
URL Ufficiale https://chromewebstore.google.com/detail/garmin-activity-downloade/himhggflahpnjikoddlngaopcigalcjh
Descrizione Tool to bulk download training data from Garmin Connect
Dimensione del File 38.5 KB
Conteggio Installazioni 7,314
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-08-07
Data di Pubblicazione 2016-08-07
Valutazione 1.18/5 Totale 33 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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\/"
    ]
}