Usuwator tła w kokpicie

By Łukasz Korecki Last update Aug 11, 2008 — Installed 47 times.
// ==UserScript==
// @name           Usuwator tła w kokpicie
// @namespace      blip.pl
// @include        http://*.blip.pl/dashboard
// @include        http://*.blip.pl/users/*/dashboard
// ==/UserScript==
css = "body { background-image:none !important; background-color:#333 !important";


var head = document.getElementsByTagName('head')[0];
var style= document.createElement('style');
style.type = "text/css";
style.innerHTML = css;
head.appendChild(style);