// ==UserScript== // @name Ikariam Resource Colorizer // @namespace kkhweb.com // @author kevinhill // @version 0.3 // @description Displays resources in different colors depending on if it is safe or not. Green is safe and Red is Pillageable. // @homepage http://kkhweb.com/web_share/greasemonkey/ResourceColorizer/ // @include http://*.ikariam.*/* // @exclude http://www.ika-world.com/* // @exclude http://ikariamap.com/* // @exclude http://board.ikariam.org/* // @require http://code.jquery.com/jquery-latest.min.js // ==/UserScript== //=============================================================== // Version Log // ============================================================== // Version 0.1: // - Completed initial script // // Version 0.2: // - Condensed functions and variables into an object with methods // - Added Saving of Secure Amount with GM_setValue so colorizing // is independant of the wharehouse page call // // Version 0.3: // - Complete rewrite of the code, cleaner and faster // @TODO update secure amount with page call in background // // //===============================================================