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