I\'m very confused, with greasemonkey setTimeout just isn\'t working, it never calls the function, looking online people say greasemonkey doesn\'t support setTimeout, is the
In the end I ended up using
window.setTimeout(bla, 1000);
and
window.bla = function() { alert("cool"); }