Share your Garmin Connect workout

Share your personal workout on Garmin Connect with other users

Share your Garmin Connect workout란 무엇입니까?

Share your Garmin Connect workout은(는) filippo.pisano에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Share your personal workout on Garmin Connect with other users"입니다.

확장 프로그램 스크린샷

screenshot

Share your Garmin Connect workout 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Add share/import capabilities to the Garmin Connect website. Sharing you workout becomes really easy.

Simply create your personal workout as always and click on the "Download" button inside the page. 

Send the json file to your friends to let them import it in their Garmin Connect profile.                    

확장 프로그램 기본 정보

이름 Share your Garmin Connect workout Share your Garmin Connect workout
ID kdpolhnlnkengkmfncjdbfdehglepmff
공식 URL https://chromewebstore.google.com/detail/share-your-garmin-connect/kdpolhnlnkengkmfncjdbfdehglepmff
설명 Share your personal workout on Garmin Connect with other users
파일 크기 156 KB
설치 횟수 10,495
현재 버전 1.1.1
최근 업데이트 2023-12-01
출시 날짜 2020-02-20
평점 4.54/5 총 41 개의 평점
개발자 filippo.pisano
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/fulippo/share-your-garmin-workout/blob/master/privacy-policy.md
지원되는 언어 en,fr,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Share your Garmin Connect workout",
    "version": "1.1.1",
    "description": "Share your personal workout on Garmin Connect with other users",
    "author": "Filippo Pisano",
    "default_locale": "en",
    "action": {
        "default_icon": {
            "16": "icons\/gsyw_16.png",
            "24": "icons\/gsyw_24.png",
            "32": "icons\/gsyw_32.png",
            "48": "icons\/gsyw_48.png",
            "128": "icons\/gsyw_128.png"
        },
        "default_popup": "popup.html",
        "default_title": "About"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/connect.garmin.com\/*",
                "https:\/\/connect.garmin.cn\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "garmin-inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "share-your-workout.js"
            ],
            "matches": [
                "https:\/\/connect.garmin.com\/*",
                "https:\/\/connect.garmin.cn\/*"
            ]
        }
    ],
    "permissions": [],
    "host_permissions": [
        "*:\/\/connect.garmin.com\/*",
        "*:\/\/connect.garmin.cn\/*"
    ],
    "manifest_version": 3
}