Skip to content

Instantly share code, notes, and snippets.

@janmoesen
Created August 21, 2013 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janmoesen/6293692 to your computer and use it in GitHub Desktop.
Save janmoesen/6293692 to your computer and use it in GitHub Desktop.
Use this on http://www.camper.com/en_BE/men/shoes/shoe to change the thumbnails to the top-down view. Useful for people with wide feet.
javascript: (function () {
// Use this on http://www.camper.com/en_BE/men/shoes/shoe to change the
// thumbnails to the top-down view. Useful for people with wide feet.
var images = document.querySelectorAll('img[src*="JGVzaG9wNiQ="]');
Array.prototype.slice.call(images).forEach(function (img) {
img.src = img.src.replace('_L.jpg', '_C.jpg');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment