Created
February 15, 2019 12:21
-
-
Save ReeganExE/c0ea883ce24a11b6fa2dd327757e1748 to your computer and use it in GitHub Desktop.
Dump Links that start with
This file contains 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
// Get and print all unique links that start with http://ul.to | |
// Inspect a container element (which contains you links) then execute this script on the Console | |
document.write([...new Set(Array.from($0.querySelectorAll('a[href^="http://ul.to"]'), a => a.href))].join('<br>')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment