Skip to content

Instantly share code, notes, and snippets.

@loisaidasam
Last active December 2, 2019 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loisaidasam/bff3d08a74e5d09d34aecd2e7fb6dc1b to your computer and use it in GitHub Desktop.
Save loisaidasam/bff3d08a74e5d09d34aecd2e7fb6dc1b to your computer and use it in GitHub Desktop.
Bookmarklet: Strava - Open Group Activities

Bookmarklet: Strava - Open Group Activities

In Strava, when you go on a bike ride with other folks, it groups your activities together.

Use this bookmarklet to open up the activities of all of the other people you rode bikes with in separate tabs.

To create the bookmarklet

  • Create a new browser bookmark
  • For location, paste in the contents of bookmarklet.js

To use

  • Open up your activity in Strava
  • Click on the head icons next to the Add Others button to open up a modal popup
  • With the Other Athletes tab open, click the bookmarklet
  • All other athletes' activities will be opened in new tabs
javascript:(function(){spans=document.querySelectorAll('span.activity-title');for(i=0;i<spans.length;i++){span=spans[i];anchor=span.getElementsByTagName('a')[0];window.open(anchor.href);}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment