Garmin activity downloader
Tool to bulk download training data from Garmin Connect
Co je Garmin activity downloader?
Garmin activity downloader je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Tool to bulk download training data from Garmin Connect“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Garmin activity downloader
Stáhněte si soubory rozšíření Garmin activity downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Garmin activity downloader |
ID | himhggflahpnjikoddlngaopcigalcjh |
Oficiální URL | https://chromewebstore.google.com/detail/garmin-activity-downloade/himhggflahpnjikoddlngaopcigalcjh |
Popis | Tool to bulk download training data from Garmin Connect |
Velikost souboru | 38.5 KB |
Počet instalací | 7,314 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2016-08-07 |
Datum Vydání | 2016-08-07 |
Hodnocení | 1.18/5 Celkem 33 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Podporované Jazyky | 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\/" ] } |