Skip to content

Instantly share code, notes, and snippets.

@steadystatic
Last active April 14, 2016 16:28
Show Gist options
  • Save steadystatic/6ae9dbffa191052352b8a6a7e4e3493b to your computer and use it in GitHub Desktop.
Save steadystatic/6ae9dbffa191052352b8a6a7e4e3493b to your computer and use it in GitHub Desktop.
Quick Little Amazon Picker (hides everything but product images)
//Paste into your URL bar in Chrome, remove this comment line (make sure you keep the "javascript:" bit, it might get stripped):
javascript: var imgList = document.querySelectorAll('.s-access-image'); document.querySelector('body').innerHTML = ''; for (i=0; i < imgList.length; i++) {document.querySelector('body').innerHTML += imgList[i].outerHTML.replace('src', 'onclick="this.parentNode.removeChild(this)" src');}
@steadystatic
Copy link
Author

Note for my use case clicking something REMOVES it, being that my son was like "NO! Not that one!" lol...

Example URL to check this with (for picking a stuffed animal): http://smile.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps&field-keywords=jellycat&rh=i%3Aaps%2Ck%3Ajellycat

stuffies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment