Strava Plus
This extension enhances Strava. You can show accumulated TSS on the training log.
Was ist Strava Plus?
Strava Plus ist eine Chrome-Erweiterung, die von https://www.cyclo.info entwickelt wurde, und ihr Hauptmerkmal ist "This extension enhances Strava. You can show accumulated TSS on the training log.".
Erweiterungsscreenshots
Strava Plus-Erweiterungs-CRX-Datei herunterladen
Laden Sie Strava Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Strava Plus |
ID | cdjkehgklopnffaenjgmbmckkeiaengi |
Offizielle URL | https://chromewebstore.google.com/detail/strava-plus/cdjkehgklopnffaenjgmbmckkeiaengi |
Beschreibung | This extension enhances Strava. You can show accumulated TSS on the training log. |
Dateigröße | 46.44 KB |
Installationsanzahl | 960 |
Aktuelle Version | 1.1 |
Letztes Update | 2016-09-08 |
Veröffentlichungsdatum | 2016-09-08 |
Bewertung | 1.80/5 Insgesamt 5 Bewertungen |
Entwickler | https://www.cyclo.info |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |