1

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?

Soner Gönül
  • 97,193
  • 102
  • 206
  • 364
mashta gidi
  • 849
  • 1
  • 10
  • 30
  • Maybe the only [ugly] way is to launch chrome without arguments, wait until its window appears and paste the url into the address bar + Enter key. – wOxxOm Sep 09 '15 at 08:53

1 Answers1

1

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).

Xan
  • 74,770
  • 16
  • 179
  • 206