Skip to content

Instantly share code, notes, and snippets.

@julescarbon
Created March 17, 2013 21:15
Show Gist options
  • Save julescarbon/5183685 to your computer and use it in GitHub Desktop.
Save julescarbon/5183685 to your computer and use it in GitHub Desktop.
Bookmarklet, turns all image links in an Apache directory listing into IMG tags. Examples: http://cd.textfiles.com/gifsgalore/GIFS/ABSTRACT/ http://www.tommoody.us/images/may08/
javascript:(function(){var az = document.getElementsByTagName("a"); for (var i in az) { az[i].innerHTML = "<img src='" + az[i].href + "'>"; } })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment