I'm having an issue on Chrome that doesn't happen on other browsers. When I run redirections in a loop, only the first redirection happens and the following ones are omitted.
E.g. the following code will only open 1 tab in Chrome, but will open 5 tabs in Firefox or Edge, among others:
for (var i = 0; i < 5; i++)
{
window.open("https://google.com/")
}
What's the big deal with Chrome? Is there any sort of webkit function to let it open all the tabs I need on Chrome?