Skip to content

Instantly share code, notes, and snippets.

@brainv
Created December 4, 2012 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brainv/4207295 to your computer and use it in GitHub Desktop.
Save brainv/4207295 to your computer and use it in GitHub Desktop.
Extract facebook images
var images = document.querySelectorAll('a.uiMediaThumb');
for (var i=0; i<images.length; i++) {
var image = unescape(images[i].href).split('=')[4]
console.log(image);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment