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文件
下載PulseTrak擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | daailpnpfacdhjnnbapapnigdniaoekj |
| 官方網址 | 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
} | |