PulseTrak
Connect BlueTooth HRM, Record workouts on YouTube, Sync with Strava
PulseTrak란 무엇입니까?
PulseTrak은(는) https://getpulsetrak.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Connect BlueTooth HRM, Record workouts on YouTube, Sync with Strava"입니다.
확장 프로그램 스크린샷
PulseTrak 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
PulseTrak extension is creating a more streamlined process for exercising to your favorite YouTube workouts and integrating with Strava. - Load up your favorite workout. - Connect your Bluetooth Heart Rate Monitor or fitness watch (see compatible watches below). - No watch, no problem! - Get your sweat on! - Send to Strava Learn more about PulseTrak at https://getpulsetrak.com Features: - Strava workout integration - Bluetooth Heart Rate Monitor connectivity - Compatible Garmin fitness watch connectivity - fenix 6 series - Forerunner 245 & 245 Music - Forerunner 945 - MARQ Collection - tactix Delta - Time-based tracking for workouts with HRM - Video title and author uploaded to workout title in Strava - Strava workout type detection - Yoga vs Workout
확장 프로그램 기본 정보
이름 | PulseTrak |
ID | daailpnpfacdhjnnbapapnigdniaoekj |
공식 URL | https://chromewebstore.google.com/detail/pulsetrak/daailpnpfacdhjnnbapapnigdniaoekj |
설명 | Connect BlueTooth HRM, Record workouts on YouTube, Sync with Strava |
파일 크기 | 3.4 MB |
설치 횟수 | 44 |
현재 버전 | 0.0.0.3 |
최근 업데이트 | 2020-07-11 |
출시 날짜 | 2020-07-11 |
개발자 | https://getpulsetrak.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://getpulsetrak.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PulseTrak", "description": "Connect BlueTooth HRM, Record workouts on YouTube, Sync with Strava", "icons": { "128": "images\/pulsetrak_logo.png" }, "version": "0.0.0.3", "permissions": [ "storage" ], "background": { "scripts": [ "background.js", "backgroundUtil.js", "stravaUtil.js" ], "persistent": false }, "browser_action": { "default_popup": "popup\/popup.html", "default_icon": { "32": "images\/pulsetrak_logo.png" } }, "content_scripts": [ { "matches": [ "http:\/\/localhost:5000\/*", "https:\/\/localhost:5000\/*", "https:\/\/getpulsetrak.github.io\/*", "https:\/\/*.getpulsetrak.com\/*" ], "js": [ "setup\/setupHandler.js" ], "run_at": "document_start" }, { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "workout\/workoutHtml.js", "workout\/workoutHandler.js", "workout\/workoutUtil.js", "workout\/bluetoothDriver.js" ], "run_at": "document_start" } ], "manifest_version": 2 } |