Forked from MichaelLawton/deleteAmazonSavedItems.js
Last active
March 27, 2024 00:08
-
-
Save deosamox/c1c6242ff7a0143c44b241e5d6da2d1a to your computer and use it in GitHub Desktop.
Updated 2024. English: Removes all Amazon saved for later items on the cart page. It will only remove visible items. You might want to scroll first to make more items visible. To use paste code in developer console (Ctrl+Shift+J or Cmd+Opt+J in Chrome) then press enter. Español: Elimina todos los elementos guardados para más tarde de Amazon en l…
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
function deleteSavedItems() { | |
var elements = document.querySelectorAll("input[name^='submit.delete.']"); | |
if (elements.length > 0) { | |
elements.forEach(function(element) { | |
element.click(); | |
}); | |
setTimeout(deleteSavedItems, 100); | |
} else { | |
console.log('Finished'); | |
} | |
} | |
deleteSavedItems(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment