Keep Wiki White : How to use Wikipedia during the blackout with Firefox and GreaseMonkey
// January 18th, 2012 // Technical // David Stinemetze
I just hacked together a quick GreaseMonkey script to bypass the Wikipedia blackout. What you need to use it?
1. Mozilla Firefox
2. GreaseMonkey addon for Firefox.
3. Keep Wiki White Script.
For the inquiring minds, here are the contents of the script:
-
-
// ==UserScript==
-
// @name WikiWhite
-
// @namespace WikiWhite
-
// @description Keeps Wiki White
-
// @include http://en.wikipedia.org/*
-
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js
-
// ==/UserScript==
-
-
-
$.noConflict();
-
-
jQuery(window).load(function() {
-
jQuery("#content").show();
-
jQuery("#mw-head").show();
-
jQuery("#mw-head-base").show();
-
jQuery("#mw-page-base").show();
-
jQuery("#mw-panel").show();
-
jQuery("#footer").show();
-
jQuery("#mw-sopaOverlay").hide();
-
});
-
/* Facebook */

