Home > front end >  Little doubt about grease monkey script
Little doubt about grease monkey script

Time:10-15

Window. The setInterval (CheckNew (), 3000);

The function CheckNew () {
location.reload();
return;
}

Had to let him three seconds automatically refresh, but every time after refresh seems to run a grease monkey code does not automatically refresh again, how to solve this problem?

CodePudding user response:

The function CheckNew () {
location.reload();
return;
}
Window. The setInterval (CheckNew, 3000);
  • Related