Overview Open Chrome DevTools What's New in DevTools DevTools tips Simulate mobile devices with Device Mode Performance insights: Get actionable insights on your website's performance Lighthouse: Optimize website speed Animations: Inspect and modify CSS animation effects Changes: Track your HTML, CSS, and JavaScript changes Coverage: Find unused JavaScript and CSS Developer Resources: View and manually load source maps CSS Overview: Identify potential CSS improvements Issues: Find and fix problems Media: View and debug media players information Memory Inspector: Inspect ArrayBuffer, TypedArray, DataView, and Wasm Memory. Network conditions: Override the user agent string Security: Understand security issues Search: Find text across all loaded resources Sensors: Emulate device sensors WebAuthn: Emulate authenticators Customize DevTools Engineering blog
Overview Open Chrome DevTools What's New in DevTools DevTools tips Simulate mobile devices with Device Mode Performance insights: Get actionable insights on your website's performance Lighthouse: Optimize website speed Animations: Inspect and modify CSS animation effects Changes: Track your HTML, CSS, and JavaScript changes Coverage: Find unused JavaScript and CSS Developer Resources: View and manually load source maps CSS Overview: Identify potential CSS improvements Issues: Find and fix problems Media: View and debug media players information Memory Inspector: Inspect ArrayBuffer, TypedArray, DataView, and Wasm Memory. Network conditions: Override the user agent string Security: Understand security issues Search: Find text across all loaded resources Sensors: Emulate device sensors WebAuthn: Emulate authenticators Customize DevTools Engineering blog

View and edit local storage

Published on Updated on

This guide shows you how to use Chrome DevTools to view, edit, and delete localStorage key-value pairs. Local storage saves data across browser sessions.

View localStorage keys and values

  1. Open DevTools on the website you want to inspect.

  2. Navigate to Application > Storage and expand Local Storage. Click a domain to view its key-value pairs.

    The key-value pairs of youtube.com.
  3. To preview the value below the table, select a pair.

    Viewing the value of the selected key.

To manually refresh the key-value pairs, click Refresh. Refresh in the action bar at the top.

Filter key-value pairs

To quickly find a key-value pair you need, type into the filter box at the top a string that either the key or value contains.

Filtering out key-value pairs that don't contain the string 'has'.

Create a new localStorage key-value pair

  1. View the domain's localStorage key-value pairs. For example, on this demo page.
  2. Double-click the empty part of the table. DevTools creates a new row and focuses your cursor in the Key column.
  3. Enter a new key-value pair.

Edit localStorage keys or values

  1. View a domain's localStorage key-value pairs. For example, on this demo page.
  2. Double-click a cell in the Key or Value column to edit that key or value.
  3. Refresh the page to apply.

Delete localStorage key-value pairs

  1. View a domain's localStorage key-value pairs. For example, on this demo page.
  2. Click a key-value pair to select it.
  3. Click Delete. Delete in the action bar at the top to remove the selected pair. Deleting the selected key-value pair.
  4. Alternatively, click Clear all. Clear all to remove all pairs.

Interact with localStorage from the Console

Since you can run JavaScript in the Console, and since the Console has access to the page's JavaScript contexts, it's possible to interact with localStorage from the Console.

  1. In DevTools, open the Console.
  2. If you want to access the localStorage key-value pairs of a domain other than the page you're on, select the JavaScript context you need from the context drop-down menu in the action bar at the top.
  3. Run your localStorage expressions in the Console, the same as you would in your JavaScript.
Interacting with `localStorage` from the Console

Updated on Improve article

This site uses cookies to deliver and enhance the quality of its services and to analyze traffic. If you agree, cookies are also used to serve advertising and to personalize the content and advertisements that you see. Learn more about our use of cookies.