Skip to content

Instantly share code, notes, and snippets.

@jjeff
Created February 26, 2015 16:45
Show Gist options
  • Save jjeff/fcbe27fe3ac3f3389f54 to your computer and use it in GitHub Desktop.
Save jjeff/fcbe27fe3ac3f3389f54 to your computer and use it in GitHub Desktop.
Bookmarklet to get highest resolution Amazon product image for product currently displayed in browser
// to create bookmarklet, use this next line as the bookmark URL (without the leading //)
// javascript:window.location.href%20=%20%27http://ec2.images-amazon.com/images/P/%27%20+%20location.pathname.match(/[0-9A-Z]{10}/)[0]%20+%20%27.01._SCRM_.jpg%27;
// source
window.location.href = 'http://ec2.images-amazon.com/images/P/' + location.pathname.match(/[0-9A-Z]{10}/)[0] + '.01._SCRM_.jpg';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment