Strava Kudos (timer)

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

Strava Kudos (timer) क्या है?

Strava Kudos (timer) mnunes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto-Kudos Activities. Includes timer option to refresh and give kudos."।

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

screenshot

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

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

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

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