Skip to content

Instantly share code, notes, and snippets.

@t5r7
Last active November 21, 2017 20:23
Show Gist options
  • Save t5r7/27da6ad076d0a6dffade5fda70b25361 to your computer and use it in GitHub Desktop.
Save t5r7/27da6ad076d0a6dffade5fda70b25361 to your computer and use it in GitHub Desktop.
Get the amount of items in your Amazon wishlist (Amazon removed the counter for some reason)
if (location.hostname.includes('amazon.') && location.pathname.includes('wishlist')) {
document.getElementById('profile-list-name').innerHTML += ' (' + document.getElementsByClassName('g-item-sortable').length + ' items)';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment