Last active
May 2, 2025 02:12
-
-
Save mdjx/ca244aa7d01fe3d0515dbde8e74bbe72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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