Skip to content

Instantly share code, notes, and snippets.

@lnfnunes
Last active August 29, 2015 14:17
Show Gist options
  • Save lnfnunes/4a66983bf72166e36376 to your computer and use it in GitHub Desktop.
Save lnfnunes/4a66983bf72166e36376 to your computer and use it in GitHub Desktop.
[bookmarklet] Remove gmail proxy from images
/**
* @author: doug2k1
**/
javascript:(function(){
var img = document.getElementsByTagName('img');
for(var i = 0, l = img.length; i < l; i++) {
var s = img[i].src;
if(s.indexOf('googleusercontent.com/proxy') !== -1) {
s = s.split('#')[1];
img[i].src = s;
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment