How can I view the protocol used in Chrome developer tools network tab?

Google ChromeUrl SchemeWeb Inspector

Google Chrome Problem Overview


The network tab on Chrome developer toolbar is great, but I'd like to see what protocol was used to transfer the resource (HTTP or HTTPS). Anyone knows how I can do this, or if there's an extension to allow me to do something similar.

Google Chrome Solutions


Solution 1 - Google Chrome

Well, this is 2016 and now you can have a column for protocols in your chrome devtools. All you have to do is:

  1. open your networks tab in devtools and right click on any of column headers to open the "select columns" popup

  2. select protocol (or any other desired column) for it to appear in the panel

enter image description here

And that's it!

enter image description here

Solution 2 - Google Chrome

Click on the resource in the "Name" column (on the very left), then select the "Headers" tab. The first line will look like this:

> Request URL: https://stackoverflow.com/questions/12213421/how-can-i-view-the-protocol-used-in-chrome-developer-tools-network-tab

The request url contains the protocol.

Solution 3 - Google Chrome

You could use the JavaScript console by entering:

location.protocol

This will return you a string of the used network protocol, such as:

  • "https:"

or

  • "http:"

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJohn HuntView Question on Stackoverflow
Solution 1 - Google ChromezhirzhView Answer on Stackoverflow
Solution 2 - Google ChromethakisView Answer on Stackoverflow
Solution 3 - Google ChromeT.LangeView Answer on Stackoverflow