or download this
javascript:(function(){ function addRawCss(styles){ var newSS; if(d
+ocument.createStyleSheet){ document.createStyleSheet("javascript:'" +
+ styles.replace(/'/g,"\\'") + "'"); }else{ newSS=document.createEleme
+nt("link"); newSS.rel="stylesheet"; newSS.href="data:text/css,"+escap
+e(styles); document.documentElement.childNodes[0].appendChild(newSS);
+ } } addRawCss("body { color: yellow !important; background-color: bl
+ack !important; }"); })()