Garmin Connect Pace Calculator
Calculate pace averages of your splits in Garmin Connect activities!
Garmin Connect Pace Calculator क्या है?
Garmin Connect Pace Calculator Yaniv Nahoum द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculate pace averages of your splits in Garmin Connect activities!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Garmin Connect Pace Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Go to any Garmin Connect activity, select the Laps tab and simply select the laps you're interested. A new table footer will appear with the average time per lap, along with total time and distance, average pace, and average power (if available) for selected laps. ## Changelog: * 0.7.0 - Added average cadence and average stride length columns. * 0.6.0 - Added Stryd lap power metric to the summary, if available. * 0.5.0 - Again - adjustments required due to changes in Garmin "steps" workout. Upgraded all dependencies, migrated to manifest v3. * 0.4.0 - Adjustments required due to changes in Garmin "steps" workout. * 0.3.17 - Handle custom workouts correctly. Extension now works correctly after navigation between activities using the < and > buttons * 0.2.0 - Laps with duration of over 60 minutes are now supported correctly. * 0.1.2 - Initial version.
एक्सटेंशन की मूल जानकारी
नाम | Garmin Connect Pace Calculator |
ID | geilncbmphlolphoeaplbjijflgggjem |
आधिकारिक URL | https://chromewebstore.google.com/detail/garmin-connect-pace-calcu/geilncbmphlolphoeaplbjijflgggjem |
विवरण | Calculate pace averages of your splits in Garmin Connect activities! |
फ़ाइल का आकार | 60.43 KB |
स्थापना संख्या | 168 |
वर्तमान संस्करण | 0.7.0 |
अंतिम अपडेट | 2022-10-23 |
प्रकाशन तिथि | 2020-06-28 |
डेवलपर | Yaniv Nahoum |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/yanivnahoum/garmin-pace-calculator |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Garmin Connect Pace Calculator", "version": "0.7.0", "manifest_version": 3, "description": "Calculate pace averages of your splits in Garmin Connect activities!", "author": "Yaniv Nahoum & Noam Neeman", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/connect.garmin.com\/*" ], "run_at": "document_end", "js": [ "main.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |