Skip to content

Instantly share code, notes, and snippets.

@mdjx
Last active November 25, 2020 04:08
Show Gist options
  • Save mdjx/ca244aa7d01fe3d0515dbde8e74bbe72 to your computer and use it in GitHub Desktop.
Save mdjx/ca244aa7d01fe3d0515dbde8e74bbe72 to your computer and use it in GitHub Desktop.
// Dump all links on a page to a text file, may need to disable adblock temporarily
window.open("data:text/csv;charset=utf-8," + encodeURIComponent(Array.from(document.links).map(e=>e.href).join("\n")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment