Skip to content

Instantly share code, notes, and snippets.

@hoangitk
Created October 21, 2020 02:14
Show Gist options
  • Save hoangitk/f7c12c02608abdab449c67001328808c to your computer and use it in GitHub Desktop.
Save hoangitk/f7c12c02608abdab449c67001328808c to your computer and use it in GitHub Desktop.
[Chrome snippets] #chrome #snippets

Chrome Snippets

List all urls

urls = []
$$('*').forEach(element => {
  urls.push(element.src)
  urls.push(element.href)
  urls.push(element.url)
}); console.log(...new Set(urls)) 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment