Skip to content

Instantly share code, notes, and snippets.

@take-cheeze
Created August 6, 2020 10:14
Show Gist options
  • Save take-cheeze/12cc76fd1356545b5d337c2970eebf5b to your computer and use it in GitHub Desktop.
Save take-cheeze/12cc76fd1356545b5d337c2970eebf5b to your computer and use it in GitHub Desktop.
document.querySelectorAll('.icon-download').forEach((v, idx) => {
setTimeout(() => {
let e = document.createElement('a');
e.href = v.parentNode.href;
e.target = '_blank';
document.body.appendChild(e);
e.click();
}, (Math.random() * 1000 + 500) * idx);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment