This app is a simple bookmarklet that finds all <img> tags on a page, and generates a new page listing all of these images.  You can then click the image and have a link emailed to yourself, so you can save or print it when you get back to your Mac/PC.









To install, go to your Mac/PC and copy the code below.  Then make a new bookmark, name it PhotoForward, and paste the code as the URL.


Download:


Mac12_Photo_Forward_files/photoforwardmac.zip


Windows12_Photo_Forward_files/photoforwardwin.zip




 

For those who are interested, here is the code:

javascript:var theEmail = prompt("Please enter an address to email pictures."); var HTMLStyle="<style type='text/css'>img {height:100px;} span{float:right;line-height:100px;font-size:50px;border:solid;-webkit-border-radius:10px;padding-left:4px;padding-right:4px;font-family:Helvetica; color:#FFFFFF}a{text-decoration:none};</style>"; var theHTML = HTMLStyle; var iaa = document.getElementsByTagName("img"); for (var i = 0; i < iaa.length; i++) { theHTML += "<a href='mailto:" + theEmail + "?body=" + iaa[i].src + "'><div><img src='" + iaa[i].src + "' /><span>Email</span></div></a><hr /><br />";} if(theHTML != HTMLStyle){imageWindow = window.open(""); imageWindow.document.write(theHTML); imageWindow.document.close();imageWindow.document.getElementsByTagName("body")[0].bgColor="black";}else{alert("There are no images to show.");}