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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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)
확장 프로그램 기본 정보
이름 | Strava Speed (Km/h / mph) |
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 |
이메일 | [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" } } |