By DFW Dino
Has 8 other scripts.
// ==UserScript==
// @name MySpace - Remove unwanted stuff.
// @description This will remove all unwanted (at least my unwnated) stuff from
// @description your portal page of myspace.
// @include http://home.myspace.com/index.cfm?fuseaction=user*
// @include http://home.myspace.com/Modules/HomeDisplay/Pages/Home.aspx??fuseaction=user*
// @Version/Date 1.0/9-10-2007
// @Code Shane - myspace.com/DFW_Dino
// ==/UserScript==
myremoveChild("header");
myremoveChild("squareAd");
myremoveChild("home_infoBar");
myremoveChild("home_coolNewVideos");
myremoveChild("splash_profile");
myremoveChild("home_greybox");
myremoveChild("home_setHomePage");
myremoveChild("home_schools");
myremoveChild("footer");
myremoveChild("StatusBox");
myremoveChild("home_searchAddressBook");
//Funcation Area
//******************************************************************************
//Will remove the child of the element of the object you pass
//******************************************************************************
function myremoveChild(elm)
{
var myContent = document.getElementById(elm);
myContent.parentNode.removeChild(myContent);
myContent = null;
}