GPX Downloader

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

Was ist GPX Downloader?

GPX Downloader ist eine Chrome-Erweiterung, die von Felix Kosmalla entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds a GPX download button for the connect.garmin.com courses.".

Erweiterungsscreenshots

screenshot
screenshot

GPX Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie GPX Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name GPX Downloader GPX Downloader
ID dpamipdfplcigmapcdgckimdgpgjidcl
Offizielle URL https://chromewebstore.google.com/detail/gpx-downloader/dpamipdfplcigmapcdgckimdgpgjidcl
Beschreibung This extension adds a GPX download button for the connect.garmin.com courses.
Dateigröße 19.13 KB
Installationsanzahl 4,923
Aktuelle Version 1.3
Letztes Update 2015-05-07
Veröffentlichungsdatum 2015-05-07
Bewertung 3.64/5 Insgesamt 36 Bewertungen
Entwickler Felix Kosmalla
Zahlungsart free
Erweiterungswebsite https://github.com/felixkosmalla/GPX-downloader
Unterstützte Sprachen 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
        }
    ]
}