By Steve Ehrenberg
Has no other scripts.
// ==UserScript==
// @name dnite's Custom MySpace Homepage
// @author Steve 'dnite' Ehrenberg
// @description Another custom myspace homepage. This one is a minimalist approach. On the left, your left with the main Hello, username! box, your mailbox and bulletin space. On the right, your left with only your friends. The header and footers haven't been touched because I use AdBlock and I don't find anything very obtrusive about them otherwise. Enjoy it!
// @include http://home.myspace.com/*
// ==/UserScript==
var head = document.getElementsByTagName('head')[0];
if (content) {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.clear {height:0px;} #main {min-height:500px;}';
head.appendChild(style);
}
var b = document.getElementById("home_infoBar");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("splash_coolNewPeople");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_userURLInfo");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_additionalLinks");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_additionalLinks");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_additionalLinks");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_additionalLinks");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_setHomePage");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_schools");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("squareAd");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("splash_profile");
if (b) {b.parentNode.removeChild(b);}
var b = document.getElementById("home_greybox");
if (b) {b.parentNode.removeChild(b);}
document.getElementById("main").style.height = "auto";
for (i = 1; i < 5; i++) {
var b = document.getElementsByTagName("br");
var br = b[b.length - 4];
br.parentNode.removeChild(br);
}