Does anyone know how to change what color of text you see others using?
I get headaches with all these deep blues and deep purples being used on the default theme.
no idea just like i can't see you text as im using black theme :3
What o-o
I can't you text because im using purple theme,
I would love to have a feature like this.
I'd probably have to add that functionality...
I generally use Select All to read what's written.
Anyway, here's a Javascript which will remove all custom colours:
Javascript Code
s=document.getElementsByTagName("div");for(a in s){p=s[a].parentNode;if(p.nodeName.toLowerCase()=='span')p=p.parentNode;if(p&&p.nodeName.toLowerCase()=='div'&&p.id.substr(0,4)=='pid_')s[a].style.color='';}
|
Probably can make it into a GreaseMonkey script.
Or paste this in the address bar all the time lol:
Code:
javascript:s=document.getElementsByTagName("div");for(a in s){p=s[a].parentNode;if(p.nodeName.toLowerCase()=='span')p=p.parentNode;if(p&&p.nodeName.toLowerCase()=='div'&&p.id.substr(0,4)=='pid_')s[a].style.color='';}void(0);
|
Lol I don't use greasemonkey and will have to learn how to use it then haha.
Ok I made it into a greasemonkey script. But was surprised it worked because I just pasted what Zinga did into a file. haha
Thanks Zinga, no more headaches for me!
Ill add it as an attachment in case anyone wants it and if anyone that actually uses greasemonkey has a way to make it better please say so.
[
attachment=3131]