Guest User

Untitled

a guest
Nov 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /*
  2. Simply copy and paste it in the developer console on humble bundle after-purchase page, where all download links are available.
  3. It uses a timeout for avoiding the browser to block the popup.
  4. */
  5. document.querySelectorAll('div.downloads div.download a.a').forEach(e => {
  6. setTimeout(() => {
  7. if (e.href.indexOf('//dl.') != -1) {
  8. window.open(e.href, '_blank')
  9. }
  10. }, 2000);
  11. })
Add Comment
Please, Sign In to add comment