Last active
August 29, 2015 14:04
-
-
Save stephenheard/0c48aa2ba1ee01699d16 to your computer and use it in GitHub Desktop.
Garmin Connect Course GPX Download Bookmarklet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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