Garmin Connect Web Missing LoadFocus Fixer

This Chrome extension fixes missing LoadFocus feature on Garmin Connect Web by modifying XHR response.

Garmin Connect Web Missing LoadFocus Fixer क्या है?

Garmin Connect Web Missing LoadFocus Fixer cankuteskin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This Chrome extension fixes missing LoadFocus feature on Garmin Connect Web by modifying XHR response."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Garmin Connect Web Missing LoadFocus Fixer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Garmin devices are very popular among professional cyclists and amateur cyclists. These devices track and record various activity data  (heart rate, power, location, speed etc.) of the athlete.

The recorded user data is accessible for Garmin users either from their physical device interface or via web interface (Garmin Connect Web - https://connect.garmin.com/) or mobile app.

For some of the Garmin users, a special part of the data (LoadFocus) is NOT showing up in Garmin Connect Web (this is a bug), even though they are able to see LoadFocus in their device screen.

This is a well known issue for more than 2 years but unfortunately this has not been fixed by Garmin.

Please see related topics:

https://forums.garmin.com/apps-software/mobile-apps-web/f/garmin-connect-web/169713/load-focus-missing-for-edge-530

https://forums.garmin.com/apps-software/mobile-apps-web/f/garmin-connect-mobile-andriod/217163/training-load-focus-shows-on-edge-530-but-not-on-connect-mobile-or-website/

So this is where the extension comes into play. It simply looks for a special XHR request and slightly modify (changes a JSON setting from false to true) the response.

This will be useful for all Garmin users who wants to see their training load from Garmin Connect Web interface.                    

एक्सटेंशन की मूल जानकारी

नाम Garmin Connect Web Missing LoadFocus Fixer Garmin Connect Web Missing LoadFocus Fixer
ID hcajefpkmimmoiljokpnjoaeoapebohe
आधिकारिक URL https://chromewebstore.google.com/detail/garmin-connect-web-missin/hcajefpkmimmoiljokpnjoaeoapebohe
विवरण This Chrome extension fixes missing LoadFocus feature on Garmin Connect Web by modifying XHR response.
फ़ाइल का आकार 20.67 KB
स्थापना संख्या 1,858
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-06-22
प्रकाशन तिथि 2022-06-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर cankuteskin
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/cankut/garmin-loadfocus-fixer
सहायता पृष्ठ URL https://github.com/cankut/garmin-loadfocus-fixer/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Garmin Connect Web Missing LoadFocus Fixer",
    "description": "This Chrome extension fixes missing LoadFocus feature on Garmin Connect Web by modifying XHR response.",
    "version": "1.1",
    "author": "[email protected]",
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "fix-garmin.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/connect.garmin.com\/modern\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/garmin16.png",
        "48": "images\/garmin48.png",
        "128": "images\/garmin128.png"
    }
}