Strava Speed (Km/h / mph)
Show speed for running activities
什么是Strava Speed (Km/h / mph)?
Strava Speed (Km/h / mph)是由Seppe开发的Chrome扩展程序,该扩展的主要功能是“Show speed for running activities”。
扩展截图
下载Strava Speed (Km/h / mph)扩展crx文件
下载Strava Speed (Km/h / mph)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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)                     扩展基本信息
| 名称 |   |  
| ID | dmanlabgfmgkjepekbadpbgcenfbohda | 
| 官方URL | https://chromewebstore.google.com/detail/strava-speed-kmh-mph/dmanlabgfmgkjepekbadpbgcenfbohda | 
| 简介 | Show speed for running activities | 
| 文件大小 | 20.23 KB | 
| 安装次数 | 194 | 
| 当前版本 | 0.1.1 | 
| 更新时间 | 2023-12-25 | 
| 上架时间 | 2021-04-15 | 
| 评分 | 4.50/5 共2次评分 | 
| 开发者 | Seppe | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 帮助页面URL | https://github.com/SeppeM8/StravaExtension/issues | 
| 支持的语言 | 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"
    }
}  |  |