Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oranblackwell/810e94b7cbb7613ca18f20ad1bf50e51 to your computer and use it in GitHub Desktop.
Save oranblackwell/810e94b7cbb7613ca18f20ad1bf50e51 to your computer and use it in GitHub Desktop.
Export watched items from Amazon Prime to Dev Tools Console.
#google tracker
[![Analytics](https://ga-beacon.appspot.com/UA-145415293-2/gist-amazon-prime-watchlist-export-console)](https://github.com/igrigorik/ga-beacon)
# https://www.amazon.co.uk/gp/yourstore/iyr/ref=pd_ys_iyr_edit_watched?ie=UTF8&collection=watched
var jqry = document.createElement('script');
jqry.src = "https://code.jquery.com/jquery-3.3.1.min.js";
document.getElementsByTagName('head')[0].appendChild(jqry);
####
$("b[id^=iyrListItemTitle] > a").contents().each(function() {
console.log($(this).text().trim());
});
@samuelkarani
Copy link

copy(
[...document.querySelectorAll('li[data-automation-id]')].map((e) => {
const title = e.querySelector('a:last-child').textContent;
const date = e.parentElement.previousElementSibling.textContent;
return ${date}\t${title};
}).join('\n')
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment