Advertisement
alseambusher

dropbox

Oct 18th, 2016
16,175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var a = document.querySelectorAll(".sl-file-link");
  2. function download(i){
  3.     if (i>=a.length)
  4.         return;
  5.     var url = a[i].href.slice(0, -1) + "1";
  6.     window.open(url, '_blank');
  7.     setTimeout(()=>{download(i+1)}, 2000);
  8. }
  9. download(0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement