Strava Auto Kudo

Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities.

什麼是Strava Auto Kudo?

Strava Auto Kudo是由cankuteskin開發的Chrome擴展程式,該擴展的主要功能是“Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities.”。

擴展截圖

screenshot
screenshot

下載Strava Auto Kudo擴展crx文件

下載Strava Auto Kudo擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Are you tired of giving kudos to all of your friends activities on Strava? This extension provides two ways to make giving kudos easy.

1. Automatic timer to check if new activities are present in your feed and give them kudos.
2. A manual "Kudo All" button appearing on Strava Dashboard which gives mass-kudo to your friends recent activities, at your command.

You can customize how the extension works by setting its options in popup screen;

* Choose either to work in automatic or manual mode
* Set how far you want to go back in your feed
* Set how frequently you want to check your feed

Version 1.1 - New Features:

* Added progress feedback for the "Kudo All!" button to user interface which shows currently executing operation step.
* Added countdown timer (for automatic mode) to user interface which shows how much time is left for the next trigger.                    

擴展基本資訊

名稱 Strava Auto Kudo Strava Auto Kudo
ID bpdlomdbmhipfcjacpgpnhbnckhiipdh
官方網址 https://chromewebstore.google.com/detail/strava-auto-kudo/bpdlomdbmhipfcjacpgpnhbnckhiipdh
簡介 Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities.
檔案大小 16.91 KB
安裝次數 983
目前版本 1.1
更新時間 2022-11-09
上架時間 2022-11-07
評分 3.50/5 共 2 次評分
開發者 cankuteskin
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/cankut/autokudo
說明頁面URL https://github.com/cankut/autokudo/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Strava Auto Kudo",
    "description": "Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities.",
    "version": "1.1",
    "author": "[email protected]",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/autokudo.js",
                "css\/autokudo.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.strava.com\/dashboard\/*"
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/like16.png",
        "48": "images\/like48.png",
        "128": "images\/like128.png"
    }
}