GPX Downloader

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

GPX Downloader là gì?

GPX Downloader là một tiện ích mở rộng Chrome được phát triển bởi Felix Kosmalla, và tính năng chính của nó là "This extension adds a GPX download button for the connect.garmin.com courses.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GPX Downloader

Tải xuống các tệp mở rộng GPX Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GPX Downloader GPX Downloader
ID dpamipdfplcigmapcdgckimdgpgjidcl
URL Chính Thức https://chromewebstore.google.com/detail/gpx-downloader/dpamipdfplcigmapcdgckimdgpgjidcl
Mô tả This extension adds a GPX download button for the connect.garmin.com courses.
Kích Thước Tệp 19.13 KB
Số Lần Cài Đặt 4,923
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2015-05-07
Ngày Phát Hành 2015-05-07
Đánh Giá 3.64/5 Tổng số 36 Đánh Giá
Nhà Phát Triển Felix Kosmalla
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/felixkosmalla/GPX-downloader
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}