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文件

下载Garmin Connect Web Missing LoadFocus Fixer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}