Keep Wiki White : How to use Wikipedia during the blackout with Firefox and GreaseMonkey

// January 18th, 2012 // Technical //

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:

  1.  
  2. // ==UserScript==
  3. // @name           WikiWhite
  4. // @namespace      WikiWhite
  5. // @description    Keeps Wiki White
  6. // @include        http://en.wikipedia.org/*
  7. // @require        http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js
  8. // ==/UserScript==
  9.  
  10.  
  11. $.noConflict();
  12.  
  13. jQuery(window).load(function() {
  14.     jQuery("#content").show();
  15.     jQuery("#mw-head").show();
  16.     jQuery("#mw-head-base").show();
  17.     jQuery("#mw-page-base").show();
  18.     jQuery("#mw-panel").show();
  19.     jQuery("#footer").show();
  20.     jQuery("#mw-sopaOverlay").hide();
  21. });
  22.  

/* Facebook */

Leave a Reply