Strava Auto Kudos

Automatically give kudos to your feed

Strava Auto Kudos là gì?

Strava Auto Kudos là một tiện ích mở rộng Chrome được phát triển bởi Mathieu Benhalima, và tính năng chính của nó là "Automatically give kudos to your feed".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Strava Auto 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

                        When you go to your feed, the extension will automatically give kudos to all the activities it sees.
When you click on the button at the bottom right of the screen, the extension will load as much activity as possible to give them a kudos.                    

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

Tên Strava Auto Kudos Strava Auto Kudos
ID gpifcdlpbfehjkkojfhmlfgplalikdjf
URL Chính Thức https://chromewebstore.google.com/detail/strava-auto-kudos/gpifcdlpbfehjkkojfhmlfgplalikdjf
Mô tả Automatically give kudos to your feed
Kích Thước Tệp 98.39 KB
Số Lần Cài Đặt 1,583
Phiên Bản Hiện Tại 1.5.1
Cập Nhật Lần Cuối 2023-05-16
Ngày Phát Hành 2021-08-06
Đánh Giá 4.64/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Mathieu Benhalima
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Strava Auto Kudos",
    "description": "Automatically give kudos to your feed",
    "version": "1.5.1",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "strava.png"
    },
    "host_permissions": [
        "https:\/\/www.strava.com\/*"
    ],
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/*"
            ],
            "css": [
                "assets\/css\/style.css"
            ],
            "js": [
                "assets\/js\/jquery-2.2.3.min.js",
                "assets\/js\/jquery-ui.min.js",
                "assets\/js\/main.js"
            ]
        }
    ]
}