Digg Ad Mover

By njkrut Last update Aug 28, 2007 — Installed 199 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Digg Ad Mover
// @namespace      http://www.trackwoot.com/
// @description    Moves the adspot down on digg.com
// @include        http*://*.digg.com*
// ==/UserScript==


theElement = document.getElementById('wrapper').childNodes[0].childNodes[4];
if (theElement)
{
	document.getElementById('wrapper').childNodes[0].removeChild(theElement)
	document.getElementById('wrapper').childNodes[0].appendChild(theElement)
}