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ファイルをダウンロード

GPX Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
        }
    ]
}