Skip to content

Latest commit

 

History

History
108 lines (65 loc) · 6.12 KB

File metadata and controls

108 lines (65 loc) · 6.12 KB
title View, edit, and delete cookies
description In Microsoft Edge DevTools, use the Cookies pane of the Application tool to view, edit, and delete the HTTP cookies for a webpage. HTTP cookies are used to manage user sessions, store user personalization preferences, and track user behavior.
author MSEdgeTeam
ms.author msedgedevrel
ms.topic conceptual
ms.prod microsoft-edge
ms.date 09/09/2022

View, edit, and delete cookies

HTTP cookies are used to manage user sessions, store user personalization preferences, and track user behavior. Use the Cookies pane of the Application tool to view, edit, and delete the HTTP cookies for a webpage.

See Using HTTP cookies.

Open the Cookies pane

  1. Open DevTools on the webpage you want to edit. For example, right-click the page and then select Inspect, or press F12. For additional ways, see Open DevTools.

  2. Click the Application tab to open the Application tool. The Manifest pane opens:

    The Manifest pane

  3. Under Storage, expand Cookies, then select an origin:

    The Cookies pane

Fields

The Cookies table contains the following fields:

  • Name. The name of the cookie.

  • Value. The value of the cookie.

  • Domain. The hosts that are allowed to receive the cookie. See Scope of cookies.

  • Path. The URL that must exist in the requested URL in order to send the Cookie header. See Scope of cookies.

  • Expires / Max-Age. The expiration date or maximum age of the cookie. See Permanent cookies. For session cookies this value is always Session.

  • Size. The size, in bytes, of the cookie.

  • HttpOnly. If true, this field indicates that the cookie should only be used over HTTP, and JavaScript modification isn't allowed. See HttpOnly cookies.

  • Secure. If true, this field indicates that the cookie must be sent to the server only over a secure, HTTPS connection. See Secure cookies.

  • SameSite. Contains strict or lax if the cookie is using the experimental Samesite attribute.

  • SameParty. This attribute provides web developers a means to annotate cookies that are allowed to be set or sent in same-party, cross-site contexts.

  • Partition Key. A partition key is a property or path within a document that can be used to distribute data within a document yet store the data together. Multiple pieces of data that are spread throughout a document and that have the same partition key value are logically grouped together and stored in the same physical partition.

  • Priority. Contains low, medium (default), or high if the cookie is using the deprecated Cookie Priority attribute.

Filter cookies

To filter cookies by Name or Value, use the Filter text box:

Filtering out any cookies that don't contain the text ID

Note: Filtering by other fields isn't supported.

Edit a cookie

The Name, Value, Domain, Path, and Expires / Max-Age fields are editable. Double-click a field to edit it:

Setting the name of a cookie to 'DEVTOOLS!'

Delete cookies

To delete a specific cookie, click a cookie and then click Delete Selected (Delete Selected):

Deleting a specific cookie.

To delete all cookies, click Clear all cookies (Clear all cookies icon):

Clearing all cookies

Note

Portions of this page are modifications based on work created and shared by Google and used according to terms described in the Creative Commons Attribution 4.0 International License. The original page is found here and is authored by Kayce Basques (Technical Writer, Chrome DevTools & Lighthouse).

Creative Commons License. This work is licensed under a Creative Commons Attribution 4.0 International License.