Garmin activity downloader

Tool to bulk download training data from Garmin Connect

Garmin activity downloader क्या है?

Garmin activity downloader Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tool to bulk download training data from Garmin Connect"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Garmin activity downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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\/"
    ]
}