Strava Kudos (timer)

Auto-Kudos Activities. Includes timer option to refresh and give kudos.

Τι είναι το Strava Kudos (timer);

Το Strava Kudos (timer) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mnunes, και η κύρια λειτουργία του είναι "Auto-Kudos Activities. Includes timer option to refresh and give kudos.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Strava Kudos (timer)

Λήψη αρχείων επέκτασης Strava Kudos (timer) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Strava Kudos (timer) is a Chrome Extension that gives Kudos to other Strava users' activities.  It is a fork from the original Strava Kudos, extending it with two additional options. 
 - Auto Kudos - If set to enable, it will press the button for you after a couple of seconds.
- Auto Refresh Page - If enabled, it will refresh the page's current Strava page on the set interval.

Update 0.1.27
- Minor fix to avoid infinite loop on the dashboard for group activities.

Update 0.1.24
- Minor fix to avoid infinite loop on the 'my_activity' dashboard page.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Strava Kudos (timer) Strava Kudos (timer)
ID hiklhbmhkahfkppcgoipldpifpgamlbj
Επίσημο URL https://chromewebstore.google.com/detail/strava-kudos-timer/hiklhbmhkahfkppcgoipldpifpgamlbj
Περιγραφή Auto-Kudos Activities. Includes timer option to refresh and give kudos.
Μέγεθος Αρχείου 49.27 KB
Αριθμός Εγκαταστάσεων 732
Τρέχουσα Έκδοση 0.1.27
Τελευταία Ενημέρωση 2023-08-30
Ημερομηνία Δημοσίευσης 2022-09-21
Αξιολόγηση 3.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής mnunes
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/senunpm/StravaKudos
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Strava Kudos (timer)",
    "description": "Auto-Kudos Activities. Includes timer option to refresh and give kudos.",
    "version": "0.1.27",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Strava Kudos"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/dashboard*",
                "https:\/\/www.strava.com\/athletes\/*",
                "https:\/\/www.strava.com\/clubs\/*"
            ],
            "js": [
                ".\/index.js"
            ]
        }
    ]
}