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