Skip to content

Instantly share code, notes, and snippets.

View pacoespinoza's full-sized avatar
🙃
success is a choice! #blessed #unstoppable

Paco Espinoza pacoespinoza

🙃
success is a choice! #blessed #unstoppable
View GitHub Profile
@pacoespinoza
pacoespinoza / moveToWishlistAmazonSavedItems.js
Last active December 21, 2022 17:31 — forked from MichaelLawton/deleteAmazonSavedItems.js
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.
function moveToWishList() {
var query = document.querySelectorAll("#sc-saved-cart input[value='Mover a la Wish List']")
if (query.length) {
query[0].click();
}
var query2 = document.querySelectorAll("#registry-2STN5ENQWOZ8J a")
if (query2.length) {
query2[0].click();
}
if (query.length > 1) {