View Single Post
  #101  
Old 08-15-2008, 05:46 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Quote:
Originally Posted by DrakilorP2P View Post
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=0i<document.styleSheets[0].cssRules.lengthi++)
        {
            
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 :-)
__________________