I have a piece of code that just doesn't want to work as a Chrome extension.
As far as I can tell, everything works fine, except that it stops opening pages around tab 25, no matter how many tabs should be open. I checked the code and tried to open each link correctly, but actually it is not. Any ideas?
for (x = 0; x<55; x++){
window.open();
}
source
share