Strava Speed (Km/h / mph)
Show speed for running activities
What is Strava Speed (Km/h / mph)?
Strava Speed (Km/h / mph) is a Chrome extension developed by Seppe, and its main feature is "Show speed for running activities".
Extension Screenshots
Download Strava Speed (Km/h / mph) Extension CRX File
Download Strava Speed (Km/h / mph) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension allows you to see the speed of activities. There are three options: - Hover (Speed only visible when hovering over pace) - Add (An extra field will be added) - Replace (Pace will be replaced by speed) Works for miles and kilometers. (Refresh required when changing option)
Extension Basic Information
Name | Strava Speed (Km/h / mph) |
ID | dmanlabgfmgkjepekbadpbgcenfbohda |
Official URL | https://chromewebstore.google.com/detail/strava-speed-kmh-mph/dmanlabgfmgkjepekbadpbgcenfbohda |
Description | Show speed for running activities |
File Size | 20.23 KB |
Installation Count | 194 |
Current Version | 0.1.1 |
Last Updated | 2023-12-25 |
Publish Date | 2021-04-15 |
Rating | 4.50/5 Total 2 Ratings |
Developer | Seppe |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/SeppeM8/StravaExtension/issues |
Supported Languages | de,en,fr,nl,es,it,pt-BR,pt-PT,sv |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Strava Speed (Km\/h \/ mph)", "description": "__MSG_appDesc__", "version": "0.1.1", "default_locale": "en", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.strava.com\/dashboard*", "*:\/\/*.strava.com\/athletes*" ], "js": [ "cards.js" ] }, { "matches": [ "*:\/\/*.strava.com\/activities*" ], "js": [ "activities.js" ] }, { "matches": [ "*:\/\/*.strava.com\/segments*" ], "js": [ "segments.js" ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html" } } |