Garmin activity downloader

Tool to bulk download training data from Garmin Connect

什麼是Garmin activity downloader?

Garmin activity downloader是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Tool to bulk download training data from Garmin Connect”。

擴展截圖

screenshot
screenshot

下載Garmin activity downloader擴展crx文件

下載Garmin activity downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Garmin activity downloader Garmin activity downloader
ID himhggflahpnjikoddlngaopcigalcjh
官方網址 https://chromewebstore.google.com/detail/garmin-activity-downloade/himhggflahpnjikoddlngaopcigalcjh
簡介 Tool to bulk download training data from Garmin Connect
檔案大小 38.5 KB
安裝次數 7,314
目前版本 1.0.1
更新時間 2016-08-07
上架時間 2016-08-07
評分 1.18/5 共 33 次評分
開發者 Unknown
付費類型 free
支援的語言 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\/"
    ]
}