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
公式URL 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
Eメール [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"
    }
}