Strava Plus
This extension enhances Strava. You can show accumulated TSS on the training log.
什麼是Strava Plus?
Strava Plus是由https://www.cyclo.info開發的Chrome擴展程式,該擴展的主要功能是“This extension enhances Strava. You can show accumulated TSS on the training log.”。
擴展截圖
下載Strava Plus擴展crx文件
下載Strava Plus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Change log:
- Fixed a critical bug: The extension doesn't work for you completely.
This extension extends Strava's training log page to show weekly accumulated TSS.
This is not official Strava extension but a Strava user made it to answer:
https://support.strava.com/hc/en-us/community/posts/208836247-Include-weekly-accumulated-TSS-on-the-training-log 擴展基本資訊
| 名稱 | |
| ID | cdjkehgklopnffaenjgmbmckkeiaengi |
| 官方網址 | https://chromewebstore.google.com/detail/strava-plus/cdjkehgklopnffaenjgmbmckkeiaengi |
| 簡介 | This extension enhances Strava. You can show accumulated TSS on the training log. |
| 檔案大小 | 46.44 KB |
| 安裝次數 | 960 |
| 目前版本 | 1.1 |
| 更新時間 | 2016-09-08 |
| 上架時間 | 2016-09-08 |
| 評分 | 1.80/5 共 5 次評分 |
| 開發者 | https://www.cyclo.info |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Strava Plus",
"version": "1.1",
"author": "Naoki Iwasaki",
"description": "This extension enhances Strava. You can show accumulated TSS on the training log.",
"icons": {
"128": "image\/logo.png"
},
"background": {
"scripts": [
"js\/jquery-3.1.0.min.js",
"js\/background\/background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.strava.com\/athletes\/*\/training\/log",
"https:\/\/www.strava.com\/athletes\/*\/training\/log?sport=Ride*"
],
"js": [
"js\/jquery-3.1.0.min.js",
"js\/content_script\/main.js"
]
}
],
"permissions": [
"identity",
"storage",
"https:\/\/www.strava.com\/*"
],
"oauth2": {
"client_id": "206151987354-vtf45di1880gm53k503rv8si584366b9.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.strava.com\/oauth\/authorize"
]
}
} | |