Skip to content

Instantly share code, notes, and snippets.

@andrewfulton
Last active December 22, 2015 23:19
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 andrewfulton/6546035 to your computer and use it in GitHub Desktop.
Save andrewfulton/6546035 to your computer and use it in GitHub Desktop.
Make the comicsworkbook.tumblr.com comics a little easier to read. Copy and paste the code below, create a new bookmark in your browser and paste this in as the URL
javascript:(function(){
$output = $('<div>');
$('.photoset_row a', $('iframe.photoset').contents()).each(function(){
$output.append( $('<img/>').attr('src', $(this).attr('href')));
});
$('section#main').replaceWith($output);
$('body').css({'margin': 0, 'width':'auto'});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment