NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Xooit - Supprimer la Pub // @author Memphis007 // @description Script écrit par Memphis007 - Supprime le cadre de pub en haut des forums Xooit // @version 1.3 // @include http://*.xooit* // @include http://*.xoo* // @include http://*.ogameteam.com* // @exclude http://*.xooit*/admin* // @exclude http://*.xoo*/admin* // @exclude http://*.ogameteam.com*/admin* // ==/UserScript== function removeElement(ElementXpath) { var alltags = document.evaluate(ElementXpath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (i = 0; i < alltags.snapshotLength; i++) { element = alltags.snapshotItem(i); element.parentNode.removeChild(element); // Remove this element from its parent. } } document.body.style.paddingTop = '0px' if (location.toString().indexOf("ogameteam.com") != -1) { removeElement('/html/body/div[@style="margin: 0; padding: 0; visibilite: visible; display: block; position: fixed; z-index: 99999999; height: 92px; width: 100%; background: url(/images/topbg.gif); top: 0; left: 0; font-size: 1px;"]'); } else { removeElement('/html/body/div[@style="margin: 0; padding: 0; visibilite: visible; display: block; position: fixed; z-index: 99999999; height: 92px; width: 100%; background: url(/images/topbg.gif); top: 0; left: 0;"]'); }