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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dave Cohen, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Better Moving Times

Λήψη αρχείων επέκτασης Better Moving Times σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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\/*"
            ]
        }
    ]
}