Skip to content

Instantly share code, notes, and snippets.

@philipbrown
Created June 24, 2014 18:36
Show Gist options
  • Save philipbrown/c48a370bef669326bcdd to your computer and use it in GitHub Desktop.
Save philipbrown/c48a370bef669326bcdd to your computer and use it in GitHub Desktop.
Enable localhost images in GMail
(function () {
while (img = document.evaluate('//img[contains(@src, \'googleusercontent.com\')]', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue) {
var src = img.attributes.src.value;
src = src.substr(src.indexOf('#') + 1);
img.attributes.src.value = src;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment