Running App Activity exporter

Export activity files from various fitness sites

Wat is Running App Activity exporter?

Running App Activity exporter is een Chrome-extensie ontwikkeld door EMurph, en de belangrijkste functie is "Export activity files from various fitness sites".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Running App Activity exporter

Download Running App Activity exporter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Export all of your activities from mapmrun so that you can import them into runkeeper or strava. Once installed a new button will appear on mapmyrun.com saying "Export All"  
  
This extension is BETA so make sure to check that all the necessary files get downloaded after completion.                    

Basisinformatie over de Extensie

Naam Running App Activity exporter Running App Activity exporter
ID jemebipipmiobojajamcjldcjlibhndg
Officiële URL https://chromewebstore.google.com/detail/running-app-activity-expo/jemebipipmiobojajamcjldcjlibhndg
Beschrijving Export activity files from various fitness sites
Bestandsgrootte 42.75 KB
Aantal Installaties 49
Huidige Versie 26
Laatst Bijgewerkt 2017-08-14
Publicatiedatum 2017-08-14
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar EMurph
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Running App Activity exporter",
    "description": "Export activity files from various fitness sites",
    "version": "26",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "19": "icon_16.png",
        "38": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.mapmyrun.com\/*",
                "https:\/\/*.mapmyrun.com\/*",
                "https:\/\/*.runkeeper.com\/*",
                "https:\/\/*.strava.com\/*"
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Export my TCX files",
        "default_icon": "icon_128.png"
    },
    "manifest_version": 2
}