Garmin Connect Pace Calculator
Calculate pace averages of your splits in Garmin Connect activities!
Garmin Connect Pace Calculator란 무엇입니까?
Garmin Connect Pace Calculator은(는) Yaniv Nahoum에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calculate pace averages of your splits in Garmin Connect activities!"입니다.
확장 프로그램 스크린샷
Garmin Connect Pace Calculator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Go to any Garmin Connect activity, select the Laps tab and simply select the laps you're interested. A new table footer will appear with the average time per lap, along with total time and distance, average pace, and average power (if available) for selected laps. ## Changelog: * 0.7.0 - Added average cadence and average stride length columns. * 0.6.0 - Added Stryd lap power metric to the summary, if available. * 0.5.0 - Again - adjustments required due to changes in Garmin "steps" workout. Upgraded all dependencies, migrated to manifest v3. * 0.4.0 - Adjustments required due to changes in Garmin "steps" workout. * 0.3.17 - Handle custom workouts correctly. Extension now works correctly after navigation between activities using the < and > buttons * 0.2.0 - Laps with duration of over 60 minutes are now supported correctly. * 0.1.2 - Initial version.
확장 프로그램 기본 정보
이름 | Garmin Connect Pace Calculator |
ID | geilncbmphlolphoeaplbjijflgggjem |
공식 URL | https://chromewebstore.google.com/detail/garmin-connect-pace-calcu/geilncbmphlolphoeaplbjijflgggjem |
설명 | Calculate pace averages of your splits in Garmin Connect activities! |
파일 크기 | 60.43 KB |
설치 횟수 | 168 |
현재 버전 | 0.7.0 |
최근 업데이트 | 2022-10-23 |
출시 날짜 | 2020-06-28 |
개발자 | Yaniv Nahoum |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/yanivnahoum/garmin-pace-calculator |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Garmin Connect Pace Calculator", "version": "0.7.0", "manifest_version": 3, "description": "Calculate pace averages of your splits in Garmin Connect activities!", "author": "Yaniv Nahoum & Noam Neeman", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/connect.garmin.com\/*" ], "run_at": "document_end", "js": [ "main.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |