Skip to content

Instantly share code, notes, and snippets.

@jdan
Created April 5, 2012 02:55
Show Gist options
  • Save jdan/2307644 to your computer and use it in GitHub Desktop.
Save jdan/2307644 to your computer and use it in GitHub Desktop.
UserScript to fix the strange blue background issue on Wikipedia (http://code.google.com/p/chromium/issues/detail?id=113711)
// ==UserScript==
// @name WikiBlue
// @description Removes strange blue overlay on Wikipedia
// @include http://en.wikipedia.org/*
// ==/UserScript==
// the guts of this userscript
function main() {
$('#mw-head-base').css('background-image', 'none');
$('#content').css('background-image', 'none');
$('#footer').css('background-image', 'none');
}
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
// load jQuery and execute the main function
addJQuery(main);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment