Quote:
Originally Posted by DrakilorP2P
PHP Code:
// ==UserScript==
// @name OGCC
// @namespace http://forums.graalonline.com/
// @description Changes background color of posts.
// @include http://forums.graalonline.com/*
// ==/UserScript==
window.addEventListener(
"load",
function() {
for (i=0; i<document.styleSheets[0].cssRules.length; i++)
{
foo = document.styleSheets[0].cssRules[i];
if (foo.selectorText == ".alt1, .alt1Active") {
foo.style.backgroundColor = "#ccddcc";
}
}
},
true);
Edit:
I'm not going to make it super-cross-platform of Internet Explorer hugging.
|
Thanks, will have to spread some more reputation first though, will rep you when I can :-)