I just want to open all pages in new tabs... Is it about chrome or my codes? Before formatting computer i can do that with this code, but now the first link open in new tab and the others open in new window. I think some of my chrome options are broken or something...
for (var i = 0; i < 2; i++) {
window.open(document.getElementById("threads").getElementsByClassName("title")[i].getAttribute("href"));
}