Bux.to auto close ad

By JoeSimmons Last update Sep 27, 2008 — Installed 2,042 times.

There are 6 previous versions of this script.

// ==UserScript==
// @name           Bux.to auto close ad
// @namespace      http://userscripts.org/users/23652
// @description    Auto closes the ad when it's done
// @include        http://*.bux.to/view.php?ad=*
// @copyright      JoeSimmons
// ==/UserScript==

function start()
{
setTimeout("window.close();", 35000);
}

if (document.addEventListener) {
window.addEventListener("load", start, false);
}
else {
window.document.onLoad = start();
}