Skip to content

Instantly share code, notes, and snippets.

@techiev2
Created July 3, 2020 06:23
Show Gist options
  • Save techiev2/c0428639110df6003c20d1795e98229c to your computer and use it in GitHub Desktop.
Save techiev2/c0428639110df6003c20d1795e98229c to your computer and use it in GitHub Desktop.
Bookmarklet to remove non-deliverable items from Amazon search listing page
javascript:(function() { Array.from(document.querySelectorAll('.s-result-item')).filter(el => el.innerText.indexOf('Currently not deliverable') !== -1).map((el) => el.parentElement.removeChild(el)); })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment