Console snippet to grab all Flickr Data export links
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
// From https://blog.dalanmiller.com/2018/12/02/easily-removing-all-your-files-from-flickr/ | |
document.querySelectorAll('.photo-data-list, .account-data-list') | |
.forEach( item => | |
item.querySelectorAll('a') | |
.forEach((e) => { | |
console.log(e.href) | |
} | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment