There is some new crap on the “home” page on myspace. More “cool new videos” and featured filmmaker, comedy, music and books. I don’t like any of that stuff. So use Firefox, install Greasemonkey and this script. Or if you have the script already installed just add these lines by clicking on tools, greasemonkey, manage user scripts, A re modified user homepage, edit and then save.

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

var b = document.getElementById(“home_featured_filmmaker”);
if (b) {b.parentNode.removeChild(b);}

var b = document.getElementById(“home_featured_comedy”);
if (b) {b.parentNode.removeChild(b);}

var b = document.getElementById(“home_featured_music”);
if (b) {b.parentNode.removeChild(b);}

var b = document.getElementById(“home_featured_books”);
if (b) {b.parentNode.removeChild(b);}