Created
June 15, 2020 10:47
-
-
Save rrakso/680d9396ea7e3d7d8c1c6b17a4c1aac4 to your computer and use it in GitHub Desktop.
JS snippet to open image from allegro.pl
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
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