Skip to content

Instantly share code, notes, and snippets.

@bossjones
Created December 12, 2023 03:16
Show Gist options
  • Save bossjones/d9d3dea2e61c92d4620ba3c684533bee to your computer and use it in GitHub Desktop.
Save bossjones/d9d3dea2e61c92d4620ba3c684533bee to your computer and use it in GitHub Desktop.
get_images_via_chrome_console.js
function img_find() {
return Array.from(document.getElementsByTagName("img")).map(i => i.src);
}
img_find()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment