Strava Total Running Pace

Calculates and adds the Total Running Pace to Strava activities

Strava Total Running Pace란 무엇입니까?

Strava Total Running Pace은(는) https://www.peterkoraca.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calculates and adds the Total Running Pace to Strava activities"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Strava Total Running Pace 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}