Strava Kudos

Auto-Kudos activities

Strava Kudosคืออะไร?

Strava Kudos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย o2dazone และคุณลักษณะหลักของมันคือ "Auto-Kudos activities"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Strava Kudos

ดาวน์โหลดไฟล์ส่วนขยาย Strava Kudos ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Feeling overwhelmed with providing Kudos to everyone on your following list? This extension provides a single-click to thumbs up everyone's activities, whether you actually looked at them, or just reciprocating Kudos.

This currently works on your live feed as well as Clubs.

If you find any issues, or would like future enhancements, or would like to simply look at the code, please visit https://github.com/o2dazone/StravaKudos

Note: Strava throttles your account if you attempt to Kudos too many activities in one session.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Strava Kudos Strava Kudos
ID fmgpfcolhjopnnbklpambicfacbbhbac
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/strava-kudos/fmgpfcolhjopnnbklpambicfacbbhbac
คำอธิบาย Auto-Kudos activities
ขนาดไฟล์ 11.05 KB
จำนวนการติดตั้ง 6,000
เวอร์ชันปัจจุบัน 0.13
อัปเดตครั้งล่าสุด 2021-08-01
วันที่เผยแพร่ 2018-10-31
คะแนน 3.98/5 รวมทั้งหมด 56 คะแนน
ผู้พัฒนา o2dazone
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/o2dazone/StravaKudos
URL หน้าช่วยเหลือ https://github.com/o2dazone/StravaKudos/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "manifest_version": 2,
    "name": "Strava Kudos",
    "description": "Auto-Kudos activities",
    "version": "0.13",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/dashboard*",
                "https:\/\/www.strava.com\/athletes\/*",
                "https:\/\/www.strava.com\/clubs\/*"
            ],
            "js": [
                ".\/index.js"
            ]
        }
    ]
}