// ==UserScript==
// @name Mole Hole - grmh.pl
// @version 1.33
// @author Tropsy Kreets
// @namespace GRMH
// @description Expansion for the Grepolis game
// @updateURL https://grmh.pl/MHscript/MH_install.user.js
// @downloadURL https://grmh.pl/MHscript/MH_install.user.js
// @match http://*.grepolis.com/*
// @match https://*.grepolis.com/*
// @icon https://grmh.pl/imgs/icon.ico
// @grant none
// ==/UserScript==
(function(){
var s=document.createElement('script');
s.type='text/javascript';
s.src='https://grmh.pl/MHscript/MH_script.js?_'+Math.round(new Date().getTime()/60000);
var l=document.createElement('link');
l.type='text/css';
l.rel='stylesheet';
l.href='https://grmh.pl/MHscript/MH_styles.css?_'+(new Date().getDay());
document.body.appendChild(s);
document.body.appendChild(l);
})();