MySpace Footer Search Remove

By Chrish Dunne Last update Aug 19, 2008 — Installed 448 times.
// ==UserScript==
// @name           MySpace Footer Search Remove
// @namespace      http://www.heeyo.net
// @description    Removes the search bar at the footer of MySpace pages (completely pointlessly placed as there is a search bar at the top of the page also)
// @include        http://*.myspace.com/*
// @exclude        http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=*
// ==/UserScript==

var search_footer = document.getElementById('search_footer');
if (search_footer) {
   search_footer.parentNode.removeChild(search_footer);
}