Quantcast
Channel: Hot Weekly Questions - Web Applications Stack Exchange
Viewing all articles
Browse latest Browse all 9788

How can I get a COMPLETE list of my albums in Google Photos? [duplicate]

$
0
0

I've tried the code below (provided by muzso in 2019) but it only returns a limited number (~30) of my hundreds of albums. Any thoughts on how to overcome this limitation?

var links = document.getElementsByTagName('A');var s = '';for (var i = 0; i < links.length; i++) {let link = links[i];if (/\b\d+ items\b/.test(link.innerText)) {let divs = link.getElementsByTagName('DIV');for (var j = 0; j < divs.length; j++) {let div = divs[j];let text = div.innerText;if (text != "" && div.childElementCount == 0 && ! /\b\d+ items\b/.test(text)) {s = s + text +'\t'+ link.href +'\n';break;}}}}s;

Viewing all articles
Browse latest Browse all 9788
<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>