DuggMirror Ad Remover

By Jeffrey903 Last update Oct 4, 2006 — Installed 499 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name         DuggMirror Ad Remover
// @description  v0.1 - Remove the first div from duggmirror sites (which should be the big ad at the top)
// @include      http://*duggmirror.com/*/*
// ==/UserScript==

var firstdiv = document.getElementsByTagName('div')[0];

if ( firstdiv != null ) { firstdiv.parentNode.removeChild(firstdiv); }