Last active
December 22, 2015 23:19
-
-
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
This file contains hidden or 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
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