Created
February 26, 2015 16:45
-
-
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
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
// 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