UDBrain Frame Fix

By haliphax Last update Mar 4, 2009 — Installed 108 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1

There are 2 previous versions of this script.

// ==UserScript==
// @name           UDBrain Frame Fix
// @namespace      http://userscripts.org/users/72447
// @description    Removes the broken UDBrain #revive_frame from Urban Dead pages.
// @include        http://www.urbandead.com/map.cgi*
// @include        http://urbandead.com/map.cgi*
// ==/UserScript==

setTimeout(function()
{
	var el = document.getElementById('revive_frame');
	el.parentNode.removeChild(el);
}, 10);