Can I open a new instance from Chrome with C #?
In the instance, I mean a new separate tab that is not contained in the existing chrome window.
I tried the following solutions, but both of them create a new tab in the existing chromatic window or create 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 always want to create a separate window, even if there are existing Chrome windows.
To be clear, in the end I want something like this (when I hovered over the chrome icon on the taskbar):

And not something like this:

I searched everywhere and I did not find a clear answer that tells me if this is possible or not with C #.
Thanks.
source share