Last active
February 27, 2018 15:46
-
-
Save nbriz/46db7bf9a439bc874ed1 to your computer and use it in GitHub Desktop.
onlyLargePhotos.js
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
var imgHTML = []; | |
var imgs = document.querySelectorAll(".fbPhotoStarGridElement"); | |
imgs.forEach((el, i)=>{ | |
imgHTML.push('<img src="'+el.getAttribute('data-starred-src')+'">'); | |
}); | |
document.body.innerHTML = imgHTML; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
updated w/new code by @ffd8 (Ted Davis) Feb 27, 2018