Better Moving Times

Better Moving Times improves time estimates for Strava routes based on distance, elevation change, and even the bike you're riding!

Better Moving Times란 무엇입니까?

Better Moving Times은(는) Dave Cohen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Better Moving Times improves time estimates for Strava routes based on distance, elevation change, and even the bike you're riding!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Better Moving Times 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Planning rides can be tricky, but having good time estimates for your next adventure can make it a whole lot easier. Better Moving Times here to help!

Strava provides moving time estimates for routes, but it's limited to your average moving speed over the past 4 weeks. Better Moving Times builds a predictive model for both moving & elapsed time based on distance, elevation change, and even the bike you're riding!

Take some of the guess work out of your next ride with this Chrome extension. Leave a review if you've found this extension helpful, and don't forget to charge your bike computer!                    

확장 프로그램 기본 정보

이름 Better Moving Times Better Moving Times
ID dfhfbekhjlfeimiibjnknhinmmjdcbbe
공식 URL https://chromewebstore.google.com/detail/better-moving-times/dfhfbekhjlfeimiibjnknhinmmjdcbbe
설명 Better Moving Times improves time estimates for Strava routes based on distance, elevation change, and even the bike you're riding!
파일 크기 140 KB
설치 횟수 223
현재 버전 1.0.2
최근 업데이트 2023-06-23
출시 날짜 2020-06-29
평점 5.00/5 총 4 개의 평점
개발자 Dave Cohen
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Better Moving Times",
    "description": "Better Moving Times improves time estimates for Strava routes based on distance, elevation change, and even the bike you're riding!",
    "version": "1.0.2",
    "icons": {
        "16": "images\/badge16.png",
        "48": "images\/badge48.png",
        "128": "images\/badge128.png"
    },
    "action": {
        "default_popup": "better-moving-times.html",
        "default_icon": {
            "16": "images\/badge16.png",
            "48": "images\/badge48.png",
            "128": "images\/badge128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "lib\/content.bundle.js"
            ],
            "css": [
                "css\/bmt.css"
            ],
            "matches": [
                "*:\/\/www.strava.com\/athlete\/routes*",
                "*:\/\/www.strava.com\/routes\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "lib\/auth.bundle.js"
            ],
            "matches": [
                "https:\/\/us-central1-tough-totem-239004.cloudfunctions.net\/auth*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png",
                "better-moving-times.html"
            ],
            "matches": [
                "https:\/\/www.strava.com\/*",
                "https:\/\/us-central1-tough-totem-239004.cloudfunctions.net\/*"
            ]
        }
    ]
}