Skip to content

Instantly share code, notes, and snippets.

View sebastiansterk's full-sized avatar
๐ŸŒฅ๏ธ

Sebastian Sterk sebastiansterk

๐ŸŒฅ๏ธ
  • ๐”˜๐”ญ๐”ญ๐”ข๐”ฏ ๐”“๐”ž๐”ฉ๐”ž๐”ฑ๐”ฆ๐”ซ๐”ž๐”ฑ๐”ข
  • 17:31 (UTC +02:00)
  • LinkedIn in/sebastian-sterk
View GitHub Profile
@leobossmann
leobossmann / extract.js
Created December 6, 2016 15:54
Extract and rename images from Pixieset
var imgs = new Array;
// replace all images by the xxl version
$('li > img').each(function(i, item){
var new_src = $(item).prop('src').replace('large', 'xxlarge');
$(item).prop('src', new_src);
imgs.push($(item));
});
// kill everything on page
$('body').empty();