Skip to content

Instantly share code, notes, and snippets.

@sters
Created June 30, 2021 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sters/2579c27a50abf8eac383592804ff2725 to your computer and use it in GitHub Desktop.
Save sters/2579c27a50abf8eac383592804ff2725 to your computer and use it in GitHub Desktop.
javascript:Array.prototype.map.apply(document.querySelectorAll("#search h3"), [(x) => { const e = x.parentElement; if (e.tagName !== "A") return null; return e.href; }]).filter((x) => x !== null).forEach((u, i) => setTimeout(() => window.open(u), i * 50));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment