Skip to content

Instantly share code, notes, and snippets.

@khal3d
Created November 20, 2013 09:28
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khal3d/7560264 to your computer and use it in GitHub Desktop.
Save khal3d/7560264 to your computer and use it in GitHub Desktop.
Download all your Runtastic activities - Go to "My Activities" and than run this code in you browser console
var links = [];
$('.download a:contains(TCX)').each ( function () {
links.push($(this).attr('href'))
} );
links.forEach(function(link) {
// console.log(link);
var newFrame = document.createElement('iframe');
document.body.appendChild(newFrame);
newFrame.style = 'width: 1px; height: 1px;';
newFrame.src = link;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment