NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Deimos (version Modificado) CHAT
// @author EmyH - ogame.com.es -
// @namespace nanana
// @icon http://i.gyazo.com/b122a2ed6d977279076b4bfd85345f3d.png
// @include http://s130-es.ogame.gameforge.com/game/index.php*
// arroba include http://*.ogame.com.es/game/index.php?page=networkkommunikation*
// ==/UserScript==
// Versión 1.0
(function(){
//var elemento = document.getElementById('eventListWrap'); //para ponerlo en evento
var elemento = document.getElementById('planet'); //para ponerlo en la imagen
var titulo = document.getElementsByTagName('h2');
titulo[0].innerHTML = 'Chigamitos Chat ogame)';
var p = document.createElement("p");
var chat = '<embed src="http://www.xatech.com/web_gear/chat/chat.swf" quality="high" width="650" height="350" name="chat" FlashVars="id=168444382" align="left" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://xat.com/update_flash.shtml" /><br><small>';
elemento.setAttribute('style', 'height:350px;background-image:none;');
p.setAttribute('style', 'margin:0px;');
p.innerHTML = chat;
elemento.appendChild(p);
})();