Last active
January 13, 2021 05:59
-
-
Save kemalelmizan/7e61afbdc76e08a69055c06a48a171c4 to your computer and use it in GitHub Desktop.
Extract all URLs
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
urls = [] | |
$$('*').forEach(e => { urls.push(e?.src, e?.href, e?.url) }) | |
console.log(...new Set(urls)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment