GPX Downloader

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

GPX Downloader란 무엇입니까?

GPX Downloader은(는) Felix Kosmalla에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a GPX download button for the connect.garmin.com courses."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GPX Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
        }
    ]
}