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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cankuteskin, και η κύρια λειτουργία του είναι "Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Strava Auto Kudo

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    }
}