Uploaded.to Popup Remover

By CoDEmanX Last update Jan 25, 2008 — Installed 1,430 times. Daily Installs: 0, 1, 2, 2, 0, 0, 1, 0, 1, 0, 0, 3, 1, 0, 1, 2, 35, 13, 2, 11, 10, 14, 10, 4, 5, 8, 5, 7, 9, 17, 15, 10
// ==UserScript==
// @name           Uploaded.to Popup Remover
// @namespace      http://userscripts.org/users/43176
// @description    Remove popup of uploaded.to (2008/01/25)
// @include        http://uploaded.to/*
// ==/UserScript==

function addJS(a)
{
	var b = document.getElementsByTagName('head')[0];
	if(!b){ return }
	var c = document.createElement('script');

	c.type = 'text/javascript';
	c.innerHTML = a;
	b.appendChild(c)
}

// Wait until the page is fully loaded
window.addEventListener( 'load', function( e ) {

	// Remove annoying popups
	addJS('function winopen(){}');

},false);