Skip to content

Instantly share code, notes, and snippets.

@F0urO4
Last active November 15, 2022 23:56
Show Gist options
  • Save F0urO4/34145f15fdbe3a17e9572d9794ecb508 to your computer and use it in GitHub Desktop.
Save F0urO4/34145f15fdbe3a17e9572d9794ecb508 to your computer and use it in GitHub Desktop.
every ebay item url from your active selling account.
Array.from(document.querySelectorAll('.item-title > a[href]')).forEach(elem => console.log(elem.getAttribute('href')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment