GPX Downloader

This extension adds a GPX download button for the connect.garmin.com courses.

GPX Downloader क्या है?

GPX Downloader Felix Kosmalla द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds a GPX download button for the connect.garmin.com courses."।

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

screenshot
screenshot

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

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

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

                        Changelog
=======

Version 1.3
------------
* Fixed bug that came out when Garmin switched to https

Version 1.2
---------
*  Added support for the new 'modern view' of garmin.connect


Description
=======

If you want to download courses you created on connect.garmin.com, this is the right extension for you. After installing it, you will notice a small button in the toolbar of your created route which allows you to download the route in the GPX format.

You may want to use this extension with your eTrex device which is not natively supported by Garmin Connect.


If you want to contribute to this project or file a bug report, please visit me on GitHub:
https://github.com/felixkosmalla/GPX-downloader                    

एक्सटेंशन की मूल जानकारी

नाम GPX Downloader GPX Downloader
ID dpamipdfplcigmapcdgckimdgpgjidcl
आधिकारिक URL https://chromewebstore.google.com/detail/gpx-downloader/dpamipdfplcigmapcdgckimdgpgjidcl
विवरण This extension adds a GPX download button for the connect.garmin.com courses.
फ़ाइल का आकार 19.13 KB
स्थापना संख्या 4,923
वर्तमान संस्करण 1.3
अंतिम अपडेट 2015-05-07
प्रकाशन तिथि 2015-05-07
रेटिंग 3.64/5 कुल 36 रेटिंग्स
डेवलपर Felix Kosmalla
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/felixkosmalla/GPX-downloader
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GPX Downloader",
    "description": "This extension adds a GPX download button for the connect.garmin.com courses.",
    "version": "1.3",
    "browser_action": {
        "default_icon": "download.png",
        "default_title": "GPX Downloader"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/connect.garmin.com\/course\/*",
                "http:\/\/connect.garmin.com\/modern\/course\/*",
                "https:\/\/connect.garmin.com\/course\/*",
                "https:\/\/connect.garmin.com\/modern\/course\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}