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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } ] } |