Strava Kudos (timer)

Auto-Kudos Activities. Includes timer option to refresh and give kudos.

Strava Kudos (timer)란 무엇입니까?

Strava Kudos (timer)은(는) mnunes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto-Kudos Activities. Includes timer option to refresh and give kudos."입니다.

확장 프로그램 스크린샷

screenshot

Strava Kudos (timer) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Strava Kudos (timer) is a Chrome Extension that gives Kudos to other Strava users' activities.  It is a fork from the original Strava Kudos, extending it with two additional options. 
 - Auto Kudos - If set to enable, it will press the button for you after a couple of seconds.
- Auto Refresh Page - If enabled, it will refresh the page's current Strava page on the set interval.

Update 0.1.27
- Minor fix to avoid infinite loop on the dashboard for group activities.

Update 0.1.24
- Minor fix to avoid infinite loop on the 'my_activity' dashboard page.                    

확장 프로그램 기본 정보

이름 Strava Kudos (timer) Strava Kudos (timer)
ID hiklhbmhkahfkppcgoipldpifpgamlbj
공식 URL https://chromewebstore.google.com/detail/strava-kudos-timer/hiklhbmhkahfkppcgoipldpifpgamlbj
설명 Auto-Kudos Activities. Includes timer option to refresh and give kudos.
파일 크기 49.27 KB
설치 횟수 732
현재 버전 0.1.27
최근 업데이트 2023-08-30
출시 날짜 2022-09-21
평점 3.50/5 총 2 개의 평점
개발자 mnunes
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/senunpm/StravaKudos
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Strava Kudos (timer)",
    "description": "Auto-Kudos Activities. Includes timer option to refresh and give kudos.",
    "version": "0.1.27",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Strava Kudos"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/dashboard*",
                "https:\/\/www.strava.com\/athletes\/*",
                "https:\/\/www.strava.com\/clubs\/*"
            ],
            "js": [
                ".\/index.js"
            ]
        }
    ]
}