Skip to content

Instantly share code, notes, and snippets.

@jalbertbowden
Created December 19, 2015 09:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jalbertbowden/2180fcadbb321e1a3551 to your computer and use it in GitHub Desktop.
Save jalbertbowden/2180fcadbb321e1a3551 to your computer and use it in GitHub Desktop.
Remove Images bookmarklet
<a href="javascript: (function () {
var images = document.getElementsByTagName('img');
var l = images.length;
for (var i = 0; i < l; i++) {
images[0].parentNode.removeChild(images[0]);
}
}());">click here</a>

Remove Images bookmarklet

I use this bookmarklet to remove images from gmail when clients send giant screenshots that screw up the whole email thread.

A Pen by Anthony Lukes on CodePen.

License.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment