﻿// ==UserScript==
// @name        USTREAM_TIMER
// @namespace   http://blog.grayash.com/
// @include     http://www.ustream.tv/*
// @include     http://ustream.tv/*
// @version     1.0
// ==/UserScript==
(function(){
	var UT_timeID;
	var sec=0;
	UT_settime = 5; //アラートを出す間隔（分）
	UT_message = new Array( "経過。そんなに見ちゃダメ！＞＜",
				"経過したけど、仕事は？",
				"経過したよ？仕事しようよ！",
				"も見てるんだけど・・・",
				"経過。USTREAM自重wwww");
	function UT_interval(){
		sec = sec+UT_settime;
		window.alert(sec + "分" + UT_message[Math.floor( Math.random() * UT_message.length )]);
	}
	UT_timeID = setInterval( UT_interval, (UT_settime*60000) );
})();
