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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Chrome extension fixes missing LoadFocus feature on Garmin Connect Web by modifying XHR response."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Garmin Connect Web Missing LoadFocus Fixer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}