Skip to content

Instantly share code, notes, and snippets.

@greencoder
Last active September 24, 2016 17:05
Show Gist options
  • Save greencoder/462836c389e1f47e84887a6bbdb67eaa to your computer and use it in GitHub Desktop.
Save greencoder/462836c389e1f47e84887a6bbdb67eaa to your computer and use it in GitHub Desktop.
Clear Amazon Echo Shopping List with jQuery
// Visit: http://alexa.amazon.com/spa/index.html#lists/shopping
// Check all the items
jQuery('.itemcheckbox').each(function(index) {
jQuery(this).click();
});
// Make sure the above step completes before you do the next
// Click the "View completed" tab
jQuery('.filter-completed').click();
// Click the "Delete All" link
jQuery('.delete-all').click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment