uploading.com download time delay bypass

By jk- Last update May 3, 2006 — Installed 7,146 times. Daily Installs: 11, 5, 14, 5, 7, 7, 5, 14, 12, 6, 9, 1, 13, 8, 6, 8, 6, 3, 6, 9, 7, 4, 9, 6, 8, 5, 5, 12, 8, 12, 9, 6
// This script will enable you to immediately start downloads without waiting for the time delay countdown.
//
//Alternatively you could use the more efficient css hack at userstyles.org/style/show/297 which also removes the
// floating css "popup".  I couldn't get that part to work with js.
//Thanks to lgarcia.org's gmail css skin for the style insertion code.
//
// ==UserScript==
// @name          uploading.com download time delay bypass
// @namespace     http://www.digivill.net/~joykillr/firefox
// @description   No longer do you have to wait for the time delay countdown to start your downloads
// @include       http://*.uploading.com/*
// @include       http://uploading.com/*
// ==/UserScript==

(function(){ 
	function addGlobalStyle(css) {
		var head, style;
		head = document.getElementsByTagName('head')[0];
		if (!head) { return; }
		style = document.createElement('style');
		style.type = 'text/css';
		style.innerHTML = css;
		head.appendChild(style);
	}
	
	var cssStyle = '#waitblock, #optionover, #shadow { display: none !important; visibility: hidden !important; } #linkblock, #codeblock { display: inline !important; }';
	
	addGlobalStyle(cssStyle);
})();