Google-chrome – Get the currently open tabs in Google Chrome via the command line

command linegoogle-chrome

I'd like to write a shell script that automatically transfers all tabs from Chrome to Firefox (by getting the list of tabs from Chrome, and then opening them in Firefox with a script.) In Google Chrome, is it possible to obtain a list of open tabs via the command line?

Best Answer

This question was not answered, solution above is for Chrome Dev Tools where the OP asked in CLI, so this is the solution I've found :

strings ~/.config/google-chrome/Default/Current\ Session | grep -E '^https?://'