Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to open "chrome://extensions/" tab in google chrome proggrammatically (C#) either with command line or java script.
Posted
Updated 20-Dec-15 22:00pm
v2

1 solution

Take a look: How to launch chrome extension tab?

Question:


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?


Answer:


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).
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900