hide myspace bottom links

By mattie 1 Last update Aug 19, 2006 — Installed 1,087 times.
// ==UserScript==
// @name           hide myspace bottom links
// @description    hides bottom links on home page
// @include        http://*.myspace.com/*
// @include        http://myspace.com/*
// ==/UserScript==

var b = document.getElementById("footer");
if (b) {b.parentNode.removeChild(b);}