Skip to content

Instantly share code, notes, and snippets.

@vnys
Created December 2, 2013 13:16
Show Gist options
  • Select an option

  • Save vnys/7749273 to your computer and use it in GitHub Desktop.

Select an option

Save vnys/7749273 to your computer and use it in GitHub Desktop.
Paste into browser console to replace all images with a base64 encoded 4x3px gray png
Array.prototype.slice.call(document.querySelectorAll('img'), 0).forEach(function(img){img.src = "data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAFklEQVQIHWPcvXv3fwYkwITEBjMxBACa/gM2HkuQHQAAAABJRU5ErkJggg=="})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment