Pages

Thursday, December 16, 2010

Change Yahoo Mail links

Recently Yahoo Mail replaced the My Yahoo link with Games on its home screen:



This is a headache because I dont play any web Games & had a lot of links under My Yahoo. Using Greasemonkey on my Firefox to tweak it back and put up a host of the most oft-used links there. Thanks YM for the idea - now the Mail screen is my time-saving launch pad:



Code:
// ********************************** 12/16/10 - changed Games link back to My Yahoo
var xx=document.getElementById("_test_my_yahoo");
if (xx != null)
{
xx.setAttribute("href","http://my.yahoo.com/");
xx.innerHTML="My Yahoo!";
}

// ********************************** 12/16/10 - added extra links
var xx=document.getElementById("networklinkscx");
if (xx != null)
{
xx.innerHTML=xx.innerHTML +
' | Gmail' +
' | News' +
' | STAT' +
' | Fidelity' +
' | Spurs' +
' | A101' +
' | CR' +
' | LogMeIn ' +
' | Blog ' ;

}