Skip to content

Instantly share code, notes, and snippets.

@Jonathan-Mckenzie
Last active May 28, 2025 12:25
Show Gist options
  • Select an option

  • Save Jonathan-Mckenzie/5d9a585f9d9a22ad115d14fa60a019e7 to your computer and use it in GitHub Desktop.

Select an option

Save Jonathan-Mckenzie/5d9a585f9d9a22ad115d14fa60a019e7 to your computer and use it in GitHub Desktop.
Give everyone in your strava feed a kudos

Give kudos to every event in your feed

  1. Navigate to the main feed page of Strava in a web browser:
    https://www.strava.com/dashboard?num_entries=100
  2. Replace the "100" in the above URL with whatever number of activities you wish to give kudos to
  3. Open Developer Tools in your web browser and navigate to the console
  4. Paste the script below into the console and press enter:
setInterval(() => {
    document.querySelectorAll('button[title="Give kudos"]').forEach(node => {
        node.click();
    });
    window.scrollBy(0,1024); 
},2000);
  1. Every activity in view should be given Kudos.

Future Enhancements

  • Script that automatically fetches your activity feed and gives kudos
@ArneS
Copy link

ArneS commented May 28, 2025

I created a separate gist to maintain the bookmarklet version of this excellent script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment