Strava Kudos

Auto-Kudos activities

What is Strava Kudos?

Strava Kudos is a Chrome extension developed by o2dazone, and its main feature is "Auto-Kudos activities".

Extension Screenshots

screenshot

Download Strava Kudos Extension CRX File

Download Strava Kudos extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Feeling overwhelmed with providing Kudos to everyone on your following list? This extension provides a single-click to thumbs up everyone's activities, whether you actually looked at them, or just reciprocating Kudos.

This currently works on your live feed as well as Clubs.

If you find any issues, or would like future enhancements, or would like to simply look at the code, please visit https://github.com/o2dazone/StravaKudos

Note: Strava throttles your account if you attempt to Kudos too many activities in one session.                    

Extension Basic Information

Name Strava Kudos Strava Kudos
ID fmgpfcolhjopnnbklpambicfacbbhbac
Official URL https://chrome.google.com/webstore/detail/strava-kudos/fmgpfcolhjopnnbklpambicfacbbhbac
Description Auto-Kudos activities
File Size 11.05 KB
Installation Count 6,000
Current Version 0.13
Last Updated 2021-08-01
Publish Date 2018-10-31
Rating 3.98/5 Total 56 Ratings
Developer o2dazone
Email [email protected]
Payment Type free
Extension Website https://github.com/o2dazone/StravaKudos
Help Page URL https://github.com/o2dazone/StravaKudos/issues
Supported Languages en-US
manifest.json
{
    "manifest_version": 2,
    "name": "Strava Kudos",
    "description": "Auto-Kudos activities",
    "version": "0.13",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/dashboard*",
                "https:\/\/www.strava.com\/athletes\/*",
                "https:\/\/www.strava.com\/clubs\/*"
            ],
            "js": [
                ".\/index.js"
            ]
        }
    ]
}