Strava Speed (Km/h / mph)

Show speed for running activities

Cos'è Strava Speed (Km/h / mph)?

Strava Speed (Km/h / mph) è un'estensione di Chrome sviluppata da Seppe, e la sua funzione principale è "Show speed for running activities".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Strava Speed (Km/h / mph)

Scarica i file di estensione Strava Speed (Km/h / mph) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome Strava Speed (Km/h / mph) Strava Speed (Km/h / mph)
ID dmanlabgfmgkjepekbadpbgcenfbohda
URL Ufficiale https://chromewebstore.google.com/detail/strava-speed-kmh-mph/dmanlabgfmgkjepekbadpbgcenfbohda
Descrizione Show speed for running activities
Dimensione del File 20.23 KB
Conteggio Installazioni 194
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-12-25
Data di Pubblicazione 2021-04-15
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore Seppe
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/SeppeM8/StravaExtension/issues
Lingue Supportate 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"
    }
}