NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name BiggerGocomics
// @namespace https://github.com/Lorentz83/
// @description Changes the page to display directly the bigger version of the comic
// @include http://www.gocomics.com/*
// @icon https://raw.githubusercontent.com/Lorentz83/userscripts/master/BiggerGocomics/icon.png
// @version 0.9a
// @grant none
// @license GPLv2; http://www.gnu.org/licenses/
// @updateURL https://greasyfork.org/en/scripts/16045-biggergocomics/code/bgc.meta.js
// ==/UserScript==
var photo = document.querySelector('#content a.photo');
if ( photo !== null ) {
var id = photo.hash;
var bigPhoto = document.querySelector(id);
photo.style.display = 'none';
bigPhoto.style.display = 'block';
bigPhoto.id = 'not-an-id';
document.querySelector('#content').style.width = '100%';
document.querySelector('#content .feature').style.width = '100%';
}