Xanga Ad Box Remover

By DesertFox Last update Jan 19, 2006 — Installed 3,511 times.
// ==UserScript==
// @name           Xanga Ad Box Remover
// @namespace      http://studio17.wordpress.com
// @description    No more annoying Xanga ad boxes!
// @include        http://www.xanga.com/*
// ==/UserScript==

if ((location.href.indexOf('dukeofavalon')==-1) &&
    (location.href.indexOf('private')==-1) &&
    (location.href.indexOf('www.xanga.com')!=-1)) {
var allDivs, thisDiv;
allDivs = document.evaluate(
    "//div[@style='height: 130px;']",
    document,
    null,
    XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
    null);
for (var i = 0; i < allDivs.snapshotLength; i++) {
    thisDiv = allDivs.snapshotItem(i);
    thisDiv.style.display = "none";
}
}