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文件

下載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
官方網址 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"
        }
    ]
}