Brad Dean

Auto Start Chrome Dev Tools from Visual Studio

When lauching Chrome from Visual Studio I often open dev tools. So it seemed to make sense that Chrome should just automatically do this. It turns out it’s very easy to set this up.

It doesn’t change how Chrome opens when it open it normally, only when starting an app from VS.

With your project loaded, click the drop down to the right of the start button and select ‘Browse With…’

Browse With...

You’ll see the list of browsers. Select ‘Add…’.

Browsers

Add a new browser with these options:

Project Drop Down

Program

C:\Program Files\Google\Chrome\Application\chrome.exe

Arguments

--auto-open-devtools-for-tabs

Friendly name

Google Chrome With Dev Tools

And that’s it! Select that browser profile when you run your app and Chrome Dev Tools will already be open when you start. Super helpful if you need to see console.log entries that fire early.