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!」です。
拡張機能のスクリーンショット
Better Moving Times拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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\/*" ] } ] } |