Skip to content

Instantly share code, notes, and snippets.

View mrdavidburns's full-sized avatar

David Burns mrdavidburns

View GitHub Profile
@jjeff
jjeff / AzProductBookmarklet.js
Created February 26, 2015 16:45
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';