View Single Post
  #97  
Old 08-15-2008, 12:58 PM
DrakilorP2P DrakilorP2P is offline
Registered User
DrakilorP2P's Avatar
Join Date: Apr 2006
Posts: 755
DrakilorP2P is just really niceDrakilorP2P is just really nice
Quote:
Originally Posted by Chompy View Post
share it?
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.