Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/9ca7f3e8a6927141bd33e8256484c69f.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Grepolis town-disappear finder
// @author Jesse de Gans
// @description Find nearby towns that will disappear soon
// @include http://*.grepolis.com/game/*
// @include https://*.grepolis.com/game/*
// @exclude view-source://*
// @exclude https://classic.grepolis.com/game/*
// @version 2020.05.05
// @grant GM_setValue
// @grant GM_getValue
// @grant unsafeWindow
// @namespace https://greasyfork.org/users/551826
// @downloadURL https://update.greasyfork.icu/scripts/402627/Grepolis%20town-disappear%20finder.user.js
// @updateURL https://update.greasyfork.icu/scripts/402627/Grepolis%20town-disappear%20finder.meta.js
// ==/UserScript==
(function() {
var doc = document.getElementById('ui_box');
//str = '';
var str =''
doc.insertAdjacentHTML( 'beforeend', str );
//showiets
const el = document.getElementById("showiets");
el.addEventListener("click", (function(){showCityFinderWindow();}), false);
var script = document.createElement('script');
script.type = "text/javascript";
script.src='https://rawcdn.githack.com/jessedegans/GrepolisCityDisappearScript/41d3a90e704805dca91ead4aa069dece92422c14/main.min.js';
//document.getElementsByTagName('body')[0].appendChild(script);
document.body.appendChild( script );
})();