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.”。
擴展截圖
下載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
擴展基本資訊
名稱 | |
ID | dpamipdfplcigmapcdgckimdgpgjidcl |
官方網址 | 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 } ] } |