Created
August 21, 2013 12:12
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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