I am using c# to open browser with specific urls. I am trying to open Chrome Extension Tab using this code:
Process.Start("chrome", "chrome://extensions");
but it doesn't go there. Any ideas?
I am using c# to open browser with specific urls. I am trying to open Chrome Extension Tab using this code:
Process.Start("chrome", "chrome://extensions");
but it doesn't go there. Any ideas?
I'm afraid you can't navigate to the privileged URLs (like chrome:
) this way. I don't think there is a workaround unless you're using an extension (that can do it via chrome.tabs
API).