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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculates and adds the Total Running Pace to Strava activities"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Strava Total Running Pace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}