Skip to content

Instantly share code, notes, and snippets.

@rrakso
Created June 15, 2020 10:47
Show Gist options
  • Save rrakso/680d9396ea7e3d7d8c1c6b17a4c1aac4 to your computer and use it in GitHub Desktop.
Save rrakso/680d9396ea7e3d7d8c1c6b17a4c1aac4 to your computer and use it in GitHub Desktop.
JS snippet to open image from allegro.pl
document.querySelectorAll("img").forEach(e=>{"presentation"===e.getAttribute("role")&&(console.log(e.src),window.open(e.src))});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment