Quote:
Originally Posted by Door
Can you make it in rainbow?
|
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";
foo.style.background = "url(http://img98.imageshack.us/img98/1931/flagtu7.gif)";
}
}
},
true);