NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name better-gdq
// @namespace dork
// @description Remove chat, expand stream.
// @include /^https?://gamesdonequick\.com\/$/
// @version 1.02
// @grant none
// ==/UserScript==
// Updated: SGDQ 2016
var ads = document.querySelector('.hidden-xs').parentNode.parentNode;
ads.remove();
var stream = document.querySelector('#stream');
var parent_box = stream.parentNode.getBoundingClientRect();
stream.style.width = (parent_box.width - 15) + 'px';
stream.style.height = (window.innerHeight - 28 - 50) + 'px';
stream.querySelector('br').remove();