Chrome
// **Save all opened tabs** - chrome://discards/ - devtools select table or tbody tag copy($0.tabList_.map(t => t.tabUrl).join('\n')) // Открыть const rawLinks = `https://google.com https://github.com https://habr.com`; // Разделяем строку в массив и открываем rawLinks.split('\n').forEach(link => { const trimmedLink = link.trim(); // Удаляем лишние пробелы/пустоты if (trimmedLink) { window.open(trimmedLink, '_blank'); } });
123…
••••••••••