Skip to content

Instantly share code, notes, and snippets.

@seeya
Last active July 10, 2018 13:11
Show Gist options
  • Save seeya/8dfba145b6d90a4b06c0fc1559e78346 to your computer and use it in GitHub Desktop.
Save seeya/8dfba145b6d90a4b06c0fc1559e78346 to your computer and use it in GitHub Desktop.
Grab download link
let start = 1;
let end = 41;
for(let i=start; i<=end; i++) {
$.get(`https://www3.watchasian.co/triumph-in-the-skies-2-episode-${i}.html`, function(data) {
let link = $(data).find('.streamango').data('video');
let name = "TriumphInTheSkiesE";
console.log(`${link}#name=${name}${i}.mp4`);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment