Something Awful Forums - AdStripper

By deleted user Last update Jun 19, 2005 — Installed 2,400 times.
// ==UserScript==
// @name		Something Awful Forums - AdStripper
// @description		Gets rid of the registration ad for the Something Awful Forums
// @include 		http://forums.somethingawful.com/*
// ==/UserScript==

(function()
{
	window.addEventListener("load", function(e) {
		document.getElementsByTagName("table")[7].innerHTML = "";
	}, false);
})();