Another round of YM changes -
Showing posts with label Greasemonkey. Show all posts
Showing posts with label Greasemonkey. Show all posts
Saturday, August 27, 2011
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:

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 ' ;
}
Saturday, May 30, 2009
Enlarge CSR Description and Resolution Box
The web version of Stat has some nice feature over the client desktop version. But the text editing area for Description and Resolution is way too small.
Using a simple greasemonkey script I enlarge both to allow for easy editing:
Using a simple greasemonkey script I enlarge both to allow for easy editing:
Subscribe to:
Posts (Atom)