Skip to content

Instantly share code, notes, and snippets.

@Tcip
Created March 27, 2022 05:57
Show Gist options
  • Save Tcip/929d92336d9e8f5156a16195e9a5adc1 to your computer and use it in GitHub Desktop.
Save Tcip/929d92336d9e8f5156a16195e9a5adc1 to your computer and use it in GitHub Desktop.
Print out all images on the page
var images=$$("img");for(each in images){var mdiv=document.createElement("P");document.body.appendChild(mdiv);mdiv.innerHTML=images[each].src};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment