It's a greasemonkey script. I don't know javascript so that makes this especially fun.
function notify(){
if window.find("1 minute")==true{
alert("y");
setTimeout("alert('time to click soon!')",60000)
}
if window.find("2 minute")==true{
alert("y");
setTimeout("alert('time to click soon!')",2*60000)
}
...repeated x30...
}
notify();
Thanks in advance.