Skip to content

Instantly share code, notes, and snippets.

@BAXTER001
Created March 1, 2013 00:01
Show Gist options
  • Save BAXTER001/5061246 to your computer and use it in GitHub Desktop.
Save BAXTER001/5061246 to your computer and use it in GitHub Desktop.
A bookmarklet for imgur to change all images linked in the comments to inline images.
javascript:(function(){var el=document.getElementsByClassName('image-link');for(i in el){ if(el[i].attributes!=undefined){var ni = document.createElement("img");ni.setAttribute('width','540px');ni.setAttribute('src',el[i].attributes['href'].value);el[i].parentNode.replaceChild(ni, el[i]);} }})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment