Strava Total Running Pace

Calculates and adds the Total Running Pace to Strava activities

ما هو Strava Total Running Pace؟

Strava Total Running Pace هو إضافة Chrome تم تطويرها بواسطة https://www.peterkoraca.com، والميزة الرئيسية لها هي "Calculates and adds the Total Running Pace to Strava activities".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Strava Total Running Pace

قم بتنزيل ملفات الامتداد Strava Total Running Pace بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    ]
}