NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name FixGrepolisWindow
// @namespace FixGrepolisWindow
// @version 1.02
// @description Fix Windows popup for Grepolis
// @include http://*.grepolis.com/game/*
// @include https://*.grepolis.com/game/*
// @grant metadata
// @copyright 2015, LeFoulek
// ==/UserScript==
var style = document.createElement("style");
style.innerHTML = " div.gpwindow_frame.ui-dialog-content.ui-widget-content { max-height: 600px !important; } .game_inner_box.sent_units_box { bottom: 0px !important;}";
document.getElementsByTagName("head")[0].appendChild(style);