Skip to content

Instantly share code, notes, and snippets.

@amadden80
Last active August 29, 2015 14:13
Show Gist options
  • Save amadden80/39a6ca9b286e0ffb4d3e to your computer and use it in GitHub Desktop.
Save amadden80/39a6ca9b286e0ffb4d3e to your computer and use it in GitHub Desktop.
Hack Some HTML!!!
// Copy Paste into JS console for ANY website...
var images = document.getElementsByTagName('img')
for (var i = 0; i < images.length; i++) {
images[i].src = 'http://andrewmadden.com/pageContent/images/face.png' ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment