MySpace Comments Remover

By Tyler Charlesworth Last update Jan 15, 2006 — Installed 1,220 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript== 
// @name          MySpace Comments Remover
// @namespace     http://www.tyworks.net
// @description   Removes the comments box from users' profiles. 
// @include       http://*.myspace.com/*
// ==/UserScript== 

(function() {
	var allTables = document.getElementsByTagName('table');
	for(var i=0; i<allTables.length; i++){
		if(allTables[i].innerHTML.indexOf('Friends Comments')<400 && allTables[i].innerHTML.indexOf('Friends Comments')>0){
			allTables[i].style.display="none";
		}
	}
})();