Strava Total Running Pace

Calculates and adds the Total Running Pace to Strava activities

Что такое Strava Total Running Pace?

Strava Total Running Pace - это расширение Chrome, разработанное https://www.peterkoraca.com, и его основная функция - "Calculates and adds the Total Running Pace to Strava activities".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Strava Total Running Pace

Скачайте файлы расширений Strava Total Running Pace в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Strava Total Running Pace Strava Total Running Pace
ID pgofidhfpfbanomhjadmmmghffnacflb
Официальный URL https://chromewebstore.google.com/detail/strava-total-running-pace/pgofidhfpfbanomhjadmmmghffnacflb
Описание Calculates and adds the Total Running Pace to Strava activities
Размер файла 38.46 KB
Количество установок 369
Текущая Версия 1.2.6
Последнее Обновление 2019-09-11
Дата публикации 2019-09-11
Рейтинг 4.50/5 Всего 2 оценок
Разработчик https://www.peterkoraca.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.peterkoraca.com/strava-total-running-pace-chrome-extension
Поддерживаемые языки 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"
        }
    ]
}