Wikipedia Blue Background Chrome fix

By Ravikiran J Last update Apr 15, 2012 — Installed 2,444 times.

There are 1 previous version of this script.

// ==UserScript==
// @name          Wiki Blue Background Chrome fix
// @author        Ravikiran Janardhana
// @description   Removes blue background for chrome in wikipedia pages
// @match http://en.wikipedia.org/*
// ==/UserScript==
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('#mw-head-base { background-image: none;}');
addGlobalStyle('div#content { background-image: none;}');
addGlobalStyle('div#footer { background-image: none;}');