Strava Auto Kudo

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

Vad är Strava Auto Kudo?

Strava Auto Kudo är en Chrome-tillägg utvecklad av cankuteskin, och dess huvudfunktion är "Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Strava Auto Kudo-förlängningens CRX-fil

Ladda ner Strava Auto Kudo-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Strava Auto Kudo Strava Auto Kudo
ID bpdlomdbmhipfcjacpgpnhbnckhiipdh
Officiell webbadress https://chromewebstore.google.com/detail/strava-auto-kudo/bpdlomdbmhipfcjacpgpnhbnckhiipdh
Beskrivning Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities.
Filstorlek 16.91 KB
Antal Installationer 983
Aktuell Version 1.1
Senast Uppdaterad 2022-11-09
Publiceringsdatum 2022-11-07
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare cankuteskin
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/cankut/autokudo
Hjälpsida URL https://github.com/cankut/autokudo/issues
Stödda Språk 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"
    }
}