Skip to content

Instantly share code, notes, and snippets.

@arbakker
Created June 7, 2022 09:04
Show Gist options
  • Save arbakker/f8fa48936f64a033f3973a6143aa4eb8 to your computer and use it in GitHub Desktop.
Save arbakker/f8fa48936f64a033f3973a6143aa4eb8 to your computer and use it in GitHub Desktop.
Get all anchors on page with extension #js #links #crawl #html
const extension = ".TIF"
console.log(
JSON.stringify(
[...document.querySelectorAll("a")].map(
x=> x.getAttribute("href")
).filter(
x=> x.endsWith(extension)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment