Export Strava to TCX

Export your strava activity to TCX

¿Qué es Export Strava to TCX?

Export Strava to TCX es una extensión de Chrome desarrollada por artofsp34k, y su función principal es "Export your strava activity to TCX".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Export Strava to TCX

Descarga archivos de extensión Export Strava to TCX en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This simple plugin allows you to export your Strava activities as a TCX file instead of GPX because GPX files doesn't include Heart rate informations which TCX does.

How it works:
- You need to be logged into Strava
- Click the plugin icon in the top right corner of your browser
- Enter the activity ID into the text field
- Hit download and the file is being downloaded

This plugin does not need any special permissions. It doesn't track or download any informations. It simply redirects you to the correct URL that has the TXC file.                    

Información Básica de la Extensión

Nombre Export Strava to TCX Export Strava to TCX
ID aiieicfdcgkbkfablicinojgpkhclboi
URL Oficial https://chromewebstore.google.com/detail/export-strava-to-tcx/aiieicfdcgkbkfablicinojgpkhclboi
Descripción Export your strava activity to TCX
Tamaño del Archivo 47.55 KB
Cantidad de Instalaciones 745
Versión Actual 1.0
Última Actualización 2019-01-21
Fecha de Publicación 2019-01-15
Calificación 2.50/5 Total de 2 Calificaciones
Desarrollador artofsp34k
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Export Strava to TCX",
    "version": "1.0",
    "description": "Export your strava activity to TCX",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}