GPX Downloader
This extension adds a GPX download button for the connect.garmin.com courses.
O que é GPX Downloader?
GPX Downloader é uma extensão do Chrome desenvolvida por Felix Kosmalla, e sua principal característica é "This extension adds a GPX download button for the connect.garmin.com courses.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GPX Downloader
Baixe arquivos de extensão GPX Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | dpamipdfplcigmapcdgckimdgpgjidcl |
URL Oficial | https://chromewebstore.google.com/detail/gpx-downloader/dpamipdfplcigmapcdgckimdgpgjidcl |
Descrição | This extension adds a GPX download button for the connect.garmin.com courses. |
Tamanho do Arquivo | 19.13 KB |
Contagem de Instalações | 4,923 |
Versão Atual | 1.3 |
Última Atualização | 2015-05-07 |
Data de Publicação | 2015-05-07 |
Classificação | 3.64/5 Total de 36 Avaliações |
Desenvolvedor | Felix Kosmalla |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/felixkosmalla/GPX-downloader |
Idiomas Suportados | 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 } ] } |