Strava Total Running Pace

Calculates and adds the Total Running Pace to Strava activities

O que é Strava Total Running Pace?

Strava Total Running Pace é uma extensão do Chrome desenvolvida por https://www.peterkoraca.com, e sua principal característica é "Calculates and adds the Total Running Pace to Strava activities".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Strava Total Running Pace

Baixe arquivos de extensão Strava Total Running Pace 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

                        This Chrome Extension calculates your “total running pace” based on the total time and total distance, rather than moving time and distance. It then displays it in your activity’s statistics panel (on the overview page).

This is extremely useful when training for trail events like ultra-marathons where you’ll be refilling water bottles and be standing still, but the race clock keeps ticking.

The extension is run only when you’re on the actual Strava activity page. Being a simple extension, it doesn’t store any data (apart from being on or off) and doesn’t send it anywhere.

Have fun                    

Informações Básicas da Extensão

Nome Strava Total Running Pace Strava Total Running Pace
ID pgofidhfpfbanomhjadmmmghffnacflb
URL Oficial https://chromewebstore.google.com/detail/strava-total-running-pace/pgofidhfpfbanomhjadmmmghffnacflb
Descrição Calculates and adds the Total Running Pace to Strava activities
Tamanho do Arquivo 38.46 KB
Contagem de Instalações 369
Versão Atual 1.2.6
Última Atualização 2019-09-11
Data de Publicação 2019-09-11
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor https://www.peterkoraca.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.peterkoraca.com/strava-total-running-pace-chrome-extension
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Strava Total Running Pace",
    "description": "Calculates and adds the Total Running Pace to Strava activities",
    "version": "1.2.6",
    "author": "Peter Koraca",
    "homepage_url": "https:\/\/www.peterkoraca.com\/strava-total-running-pace-chrome-extension",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "ui.html",
        "default_icon": "Icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/testing.crowinteractive.com\/*",
                "https:\/\/testing.crowinteractive.com\/*",
                "https:\/\/www.strava.com\/activities\/*",
                "http:\/\/www.strava.com\/activities\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}