Clean My Yahoo!

By Min Lee Last update Dec 10, 2008 — Installed 365 times. Daily Installs: 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0
// ==UserScript==
// @name           Clean My Yahoo!
// @namespace      http://nahhhh.com
// @description    move header elements to the bottom of the page
// @include        http://*my.yahoo.com/*
// ==/UserScript==

(
	function()
	{
		var header = document.getElementById('hd');
		var footer = document.getElementById('ft');
		if (!header || !footer) {
			return;
		} else {
			header.parentNode.insertBefore(header, footer);
		}
	}
)();