I want to run a little script in my Browsers (Chrome) Javascript Console, which clicks some buttons to show me some links
for (var i = 1; i <= 300; i++) {
expandPack("S" + i);
}
So to not ddos the site, I'd need a delay
The delay should be between every run of the expandPack function
So how to do this?
Thanks for your help
EDIT:
Okay, got it to work with this guys code
https://stackoverflow.com/a/3583754/3499442
didn't see it wen googling for it
Although Thank everyone for his help