// ==UserScript==
// @name           Twitter Auto-refresh
// @namespace      http://twitter.com/
// @description    Automatically refireshes twitter home page.
// @include        http://*twitter.com/
// @include        http://*twitter.com/#home
// @inlcude        http://*twitter.com/replies
// @inlcude        http://*twitter.com/#replies
// @inlcude        http://*twitter.com/#inbox
// @include        http://*twitter.com/#search*
// @include        http://*twitter.com/timeline/home*
// @include        http://twitter.com/timeline/replies*
// @exclude        http://twitter.com/account*
// @exclude        http://twitter.com/invitations

// ==/UserScript==

(function() {
	//EDIT limit TO MANUALLY SET YOUR REFRESH TIME
	//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
	var limit="5:00";

	var parselimit=limit.split(":");
	parselimit=(parselimit[0]*60+parselimit[1]);
	parselimit = parseInt(parselimit) * 10;
	function beginrefresh(){
		setTimeout("document.location.reload();",parselimit);
	}
	beginrefresh();
 })();
