GreaseMonkey countdown not working?

后端 未结 2 619
情歌与酒
情歌与酒 2020-12-21 16:33

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

2条回答
  •  时光说笑
    2020-12-21 17:09

    In the end I ended up using

    window.setTimeout(bla, 1000);
    

    and

    window.bla = function() { alert("cool"); }

提交回复
热议问题