Skip to content

Instantly share code, notes, and snippets.

@yuheiy
Last active February 29, 2016 13:40
Show Gist options
  • Save yuheiy/0d26352ffe3a4ce32a91 to your computer and use it in GitHub Desktop.
Save yuheiy/0d26352ffe3a4ce32a91 to your computer and use it in GitHub Desktop.
Array.prototype.slice.call(
document.querySelectorAll('.fbPhotoStarGridElement')
).filter(function (el) {
return el.querySelector('.uiMediaThumb');
}).map(function (el) {
return el.dataset.fbid;
}).forEach(function (id, i) {
setTimeout(function () {
var url = 'https://www.facebook.com/photo/download/?fbid=' + id;
location.href= url;
}, 1000 * i)}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment