Un-Blackout Wikipedia with jQuery and jsshell.
Make a custom command that will autorun every time you’re on en.wikipedia.org.
Have that command: Remove the SOPA overlay on hover (basically as soon as it appears), make visible every element, and hide html tags that clutter the page.
Like:
$('#mw-sopaOverlay').live('hover', function(){ $(this).remove(); $('*').show(); $('style, script, title').hide(); });
Homework away, my beloved techno-dependents.
