Skip to content

Instantly share code, notes, and snippets.

@pa-0
Forked from mdjx/DevToolsSnippets.js
Created May 2, 2025 02:12
Show Gist options
  • Save pa-0/5bd7a047949cb48ed27632baae94e732 to your computer and use it in GitHub Desktop.
Save pa-0/5bd7a047949cb48ed27632baae94e732 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