How to view http cookie of webpage in Chrome browser

Google Chrome comes with a powerful Developer Tools. It is a bliss for web developer. Chrome’s Developer Tool has so many useful features that you would hardly miss anything that is not already there.

Here is a simple tip for those who are not already familiar with Chrome’s Developer Tools (F12). If you want to see what all cookies have been set on any webpage you can easily check that using Developer Tools. Follow these simple steps:

  1. Open the webpage whose cookies you want to analyze.
  2. Open Developer Tools in Chrome (Press F12)
  3. Goto Resources tab
  4. From below tree view, open Cookies view.
  5. Select the domain from the Cookies view list.
  6. Right hand side view will display all the cookies and other useful information.
google-chrome-cookie-resource

See below screenshot (Click to enlarge).

Get our Articles via Email. Enter your email address.

You may also like...

1 Comment

  1. Cacho says:

    public static String getParameterValue(List<Parameter> params, String key) {
    		for (Parameter param : params){
    			if (param.getKey().equals(key)){
    				return param.getStringValue();
    			}
    		}
    		return null;
    	}
    

Leave a Reply

Your email address will not be published. Required fields are marked *