Last active
February 17, 2025 19:02
-
-
Save oranblackwell/810e94b7cbb7613ca18f20ad1bf50e51 to your computer and use it in GitHub Desktop.
Export watched items from Amazon Prime to Dev Tools Console.
This file contains 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
#google tracker | |
[](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()); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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')
)