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