IGoogleClean
From Chickenfoot Script Repository
Simple script for removing the oversized header image and search box at the top of your iGoogle pages.
// ==UserScript==
// @name iGoogle edit
// @when Pages Match
// @description Removes the oversized header from iGoogle homepages
// @includes http://www.google.com*
// ==/UserScript==
if (find(" 'Classic Home' link ").hasMatch) { // make sure user is not on the Google personalized home page
var out = document.getElementById("nhdrwrap");
var str = "<form id=\"sfrm\" name=\"f\" method=\"get\" action=\"/search\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td align=\"right\" valign=\"top\" class=\"gsealog\"></td><td align=\"right\" class=\"gseain\" valign=\"top\" nowrap><input type=\"hidden\" name=\"source\" value=\"ig\"><input type=\"hidden\" name=\"hl\" id=\"hl\" value=\"en\"><input type=\"hidden\" name=\"rlz\" value=\"\"><input type=\"hidden\" name=\"\" value=\"\" /><input type=\"text\" name=\"q\" id=\"q\" size=\"30\" maxlength=\"2048\" value=\"\" autocomplete=\"off\"/><input type=\"submit\" value=\"Search\" name=\"btnG\" id=\"btnG\"><br></td></tr></table></form>";
replace(out, str);
}
