Strava Kudos

Auto-Kudos activities

Strava Kudos là gì?

Strava Kudos là một tiện ích mở rộng Chrome được phát triển bởi o2dazone, và tính năng chính của nó là "Auto-Kudos activities".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Strava Kudos

Tải xuống các tệp mở rộng Strava Kudos dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Strava Kudos Strava Kudos
ID fmgpfcolhjopnnbklpambicfacbbhbac
URL Chính Thức https://chrome.google.com/webstore/detail/strava-kudos/fmgpfcolhjopnnbklpambicfacbbhbac
Mô tả Auto-Kudos activities
Kích Thước Tệp 11.05 KB
Số Lần Cài Đặt 6,000
Phiên Bản Hiện Tại 0.13
Cập Nhật Lần Cuối 2021-08-01
Ngày Phát Hành 2018-10-31
Đánh Giá 3.98/5 Tổng số 56 Đánh Giá
Nhà Phát Triển o2dazone
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/o2dazone/StravaKudos
URL Trang Trợ Giúp https://github.com/o2dazone/StravaKudos/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}