GLB Forum Main Page Auto-Refresh/Reload (2 1/2 Minute Version)

By DaRealest Last update Aug 23, 2008 — Installed 309 times.
// ==UserScript==
// @name           GLB Forum Main Page Auto-Refresh/Reload (2 1/2 Minute Version)
// @namespace      GLB
// @description    Automatically refreshes the Main Forum page every 2 1/2 minutes (which is good enough for most users).
// @include        http://goallineblitz.com/game/forum_main.pl
// @include        http://216.245.193.2/game/forum_main.pl
// ==/UserScript==

var time = 150000; //= 2.5minutes			
	
window.setTimeout(
	function()
	{
		window.location.reload() ;
	},
	time
) ;