Skip to content

Instantly share code, notes, and snippets.

@oleksii-zavrazhnyi
Created June 3, 2014 21:38
Show Gist options
  • Save oleksii-zavrazhnyi/2012343ca608f9f1b069 to your computer and use it in GitHub Desktop.
Save oleksii-zavrazhnyi/2012343ca608f9f1b069 to your computer and use it in GitHub Desktop.
Get AppStore Apps Icons list
// Paste this code in Console at
// https://itunes.apple.com/us/genre/ios-social-networking/id6005?mt=8
// The take a look at the end of page
$('.grid3-column li a').each(function(){
$('<div>').load($(this).attr('href'), function(){$('body').append('<div>' + $(this).find('.product .artwork img').attr('src') + '</div>')});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment