Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hemanth/1632057 to your computer and use it in GitHub Desktop.
Save hemanth/1632057 to your computer and use it in GitHub Desktop.
Userscript that removes the SOPA overlay on English Wikipedia
// ==UserScript==
// @name Disable the SOPA overlay on English Wikipedia
// @author Mathias Bynens <http://mathiasbynens.be/>
// @match http://en.wikipedia.org/wiki/*
// ==/UserScript==
// http://mths.be/unsafewindow
window.unsafeWindow || (
unsafeWindow = (function() {
var el = document.createElement('p');
el.setAttribute('onclick', 'return window;');
return el.onclick();
}())
);
unsafeWindow.jQuery('#siteNotice, #mw-sopaOverlay').remove().end().add('#content').show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment