ShareBigFile.com-NoWait

By Cynoclast Last update May 16, 2006 — Installed 1,051 times.
// ==UserScript==
 // @name           ShareBigFile.com-NoWait
 // @namespace      none
 // @description    Kills the lame 15 second delay (supposed to make you view ads)
 // @include http://www.sharebigfile.com/*
 // ==/UserScript==
(
    function() {
	    function doneWaiting() {
            document.getElementById("countbar").style.display = 'none';
            document.getElementById("downloadfile").style.display = '';
    	}

	doneWaiting();

    }
)();