Download all your Runtastic activities - Go to "My Activities" and than run this code in you browser console
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
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