NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ChatMAFnorma // @author EL_PATRON // @include *s166-es*game/index.php?page=alliance* // @descriptios Agrega el chat de discord de la alianza MAF uni norma dentro del ogame // @license MIT // @version 3.3 // ==/UserScript== (function () { var elemento = document.getElementById('contentWrapper'); //para ponerlo en la imagen var p = document.createElement("p"); var chat = '<iframe src="https://titanembeds.com/embed/659976073848815618" height="400" width="640" frameborder="0"></iframe>'; p.setAttribute('style', 'marginLeft: 0px;'); p.innerHTML = chat; elemento.appendChild(p); })();