Strava Total Running Pace

Calculates and adds the Total Running Pace to Strava activities

Strava Total Running Pace là gì?

Strava Total Running Pace là một tiện ích mở rộng Chrome được phát triển bởi https://www.peterkoraca.com, và tính năng chính của nó là "Calculates and adds the Total Running Pace to Strava activities".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Strava Total Running Pace

Tải xuống các tệp mở rộng Strava Total Running Pace dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Strava Total Running Pace Strava Total Running Pace
ID pgofidhfpfbanomhjadmmmghffnacflb
URL Chính Thức https://chromewebstore.google.com/detail/strava-total-running-pace/pgofidhfpfbanomhjadmmmghffnacflb
Mô tả Calculates and adds the Total Running Pace to Strava activities
Kích Thước Tệp 38.46 KB
Số Lần Cài Đặt 369
Phiên Bản Hiện Tại 1.2.6
Cập Nhật Lần Cuối 2019-09-11
Ngày Phát Hành 2019-09-11
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.peterkoraca.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.peterkoraca.com/strava-total-running-pace-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}