NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LifeForm Bonus // @namespace http://tampermonkey.net/ // @version 2023-12-11 // @description try to take over the world! // @author Hari Seldon // @match https://*.ogame.gameforge.com/game/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gameforge.com // @grant none // @licence MIT // ==/UserScript== (function() { 'use strict'; const MenuLF = (function(){ function init(){ set_html(); } function set_html(){ var url = window.location.hostname; const result = `<li> <span class="menu_icon"> <div class="menuImage lifeform ipiHintable"> </div> </span> <a class="menubutton ipiHintable" href="https://${url}/game/index.php?page=ingame&component=lfbonuses" target="_self"> <span class="textlabel">LifeForm Bonus</span> </a> </li>`; document.querySelector( '#menuTable' ).innerHTML += result; } return { init }; })(); MenuLF.init(); })();