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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto give kudos for followed athletes recent activities. It searches user-feed back in time and looks for non-kudoed activities."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Strava Auto Kudo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}