Answer the question
In order to leave comments, you need to log in
Is it possible to select a pool of links in the Google Chrome browser and open them all at once in new tabs?
Answer the question
In order to leave comments, you need to log in
Create a bookmarked folder, then fill it with bookmarks. To open all links, hover over the previously created folder and click "Open all bookmarks".
Like this, I'm writing from memory.
The algorithm of actions for Windows: Create a urls.txt
file with links (one link in each line), go from the command line to the folder with the file, and write to the command line
You can create a batch file, a file like starturls.bat , and drop it into it
And now , if you put a file with links named urls.txt next to it , execute a batch file, the links will open.
for /f "" %a in (urls.txt) do start %a
for /f "" %%a in (urls.txt) do start %%a
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question