It is possible to open a new instance of Chrome from C#?
By instance I mean a new separate tab, not contained in an existing chrome window.
I've tried the following solutions but both of them create a new tab in an existing chrome window or creates an instance if no one exists:
Process.Start(@"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "www.google.com"); Process.Start("chrome.exe", "www.google.com"); I want to create always a separate window, even if there are existing Chrome windows.
To be clear, at the end I want something like that (when I hover on the chrome icon in the taskbar):
And not something like that:
I've searched everywhere and I haven't found a clear answer that says me if this is even possible or not from C#.
Thank you.

