5
votes

When you click a target='_blank' link, it naturally opens a new tab in Google Chrome. For particular sites, I need to use the Chrome Developer Tools to examine the http requests for any new tabs that are opened.

Whenever you have Chrome Dev Tools open on your current page and then click a link that opens a new tab, Chrome Dev Tools are not opened on the new page by default. Opening Chrome Dev Tools at this point is too late because the tools do not capture the http requests for the page.

Also, in many cases, these new tabs go through a series of redirects before reaching the final page, so I cannot simply reload the page after opening Chrome Dev Tools.

The only workaround I can think of is, in the case that the site I'm working on is on a local development server, I can temporarily change the link from target='_blank' to target='_self', but this is unrealistic for a site with thousands of links or for a site that I have no control over the code.

Is it possible to set Chrome Dev Tools to automatically open with every new tab (opened either manually or via target='_blank'?

3
could be a good suggestion for google ui experiences in dev tools ;)fred randall

3 Answers

3
votes

It's possible to auto open devtools for all the new tabs instead of just target = _blank. When launching google chrome, pass the flag --auto-open-devtools-for-tabs. It enables launching of devtools for all the windows created automatically.

For linux

google-chrome --auto-open-devtools-for-tabs

For Mac

open -a "Google Chrome" --args --auto-open-devtools-for-tabs

4
votes

I'm not sure as of which Chrome version this changed, but if you click on the Settings wheel on dev tools:

enter image description here

You'll see a Global section with a checkmark for "Auto-Open DevTools for popups", which works for opening target="_blank" links with a devtools window:

enter image description here

0
votes

You can only open DevTools window via UI action or keyboard shortcut. There is no way to do this automatically.