Strava Speed (Km/h / mph)
Show speed for running activities
Strava Speed (Km/h / mph)とは何ですか?
Strava Speed (Km/h / mph)はSeppeによって開発されたChromeの拡張機能で、その主な機能は「Show speed for running activities」です。
拡張機能のスクリーンショット
Strava Speed (Km/h / mph)拡張機能のCRXファイルをダウンロード
Strava Speed (Km/h / mph)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to see the speed of activities.
There are three options:
- Hover (Speed only visible when hovering over pace)
- Add (An extra field will be added)
- Replace (Pace will be replaced by speed)
Works for miles and kilometers.
(Refresh required when changing option) 拡張機能の基本情報
| 名前 | |
| ID | dmanlabgfmgkjepekbadpbgcenfbohda |
| 公式URL | https://chromewebstore.google.com/detail/strava-speed-kmh-mph/dmanlabgfmgkjepekbadpbgcenfbohda |
| 説明 | Show speed for running activities |
| ファイルサイズ | 20.23 KB |
| インストール数 | 194 |
| 現在のバージョン | 0.1.1 |
| 最終更新日 | 2023-12-25 |
| 公開日 | 2021-04-15 |
| 評価 | 4.50/5 合計 2 レビュー |
| 開発者 | Seppe |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://github.com/SeppeM8/StravaExtension/issues |
| 対応言語 | de,en,fr,nl,es,it,pt-BR,pt-PT,sv |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Strava Speed (Km\/h \/ mph)",
"description": "__MSG_appDesc__",
"version": "0.1.1",
"default_locale": "en",
"manifest_version": 3,
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.strava.com\/dashboard*",
"*:\/\/*.strava.com\/athletes*"
],
"js": [
"cards.js"
]
},
{
"matches": [
"*:\/\/*.strava.com\/activities*"
],
"js": [
"activities.js"
]
},
{
"matches": [
"*:\/\/*.strava.com\/segments*"
],
"js": [
"segments.js"
]
}
],
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
}
} | |