Skip to content

Instantly share code, notes, and snippets.

@stephenheard
Last active August 29, 2015 14:04
Show Gist options
  • Save stephenheard/0c48aa2ba1ee01699d16 to your computer and use it in GitHub Desktop.
Save stephenheard/0c48aa2ba1ee01699d16 to your computer and use it in GitHub Desktop.
Garmin Connect Course GPX Download Bookmarklet
javascript:(function(){ if (window.location.host == "connect.garmin.com") { var pathArray = window.location.pathname.split( '/' ); if ( pathArray[1] == "course" ) { open('http://connect.garmin.com/proxy/course-service-1.0/gpx/course/' + pathArray[2]); } } }());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment