How to View and Edit local Storage in Microsoft Edge Browser (original) (raw)

Last Updated : 23 Jul, 2025

Local Storage in **Microsoft Edge is a key component for web developers, allowing websites to store data locally in the user's browser. This feature is especially useful for saving preferences, session data, or even small-scale databases that need to persist between sessions. If you're looking to **view or **edit Local Storage data in **Edge, the **Developer Tools provide an easy-to-use interface.

In this guide, we'll walk you through the steps to access and manipulate Local Storage in the **Microsoft Edge browser.

What is Local Storage

Local Storage is a feature of the Web Storage API that allows websites to store data persistently in your browser as key-value pairs. This data remains available even after you close and reopen the browser. It's important to note that while Local Storage offers convenience, it is not designed for storing sensitive information, as it can be vulnerable to cross-site scripting (XSS) attacks.

1. Viewing Local Storage in Microsoft Edge

To inspect and manage the data stored by websites in your browser, Microsoft Edge provides a set of developer tools. Follow these steps to access and view Local Storage:​

**Step 1: Open Microsoft Edge Developer Tools

image

Open Microsoft Edge Developer Tools

**Step 2: Access the Application Tab

Screenshot-2023-09-12-174455-(1)

**Step 3: Locate Local Storage

expand

2. Creating and Editing Local Storage Data in Microsoft Edge

Microsoft Edge's Developer Tools provide a convenient way to manage Local Storage, allowing you to add, modify, or remove data stored by websites. Follow these steps to create and edit Local Storage entries:​

**Step 1: Open Microsoft Edge Developer Tools

**Step 2: Access the Application Tab

**Step 3: Locate Local Storage

edit

**Step 4: Create a New Local Storage Entry

edited

**Step 5: Edit an Existing Local Storage Entry

3. Deleting LocalStorage Data

**Step 1: Delete Specific Items

**Step 2: Delete All Items for a Domain

Click the **Clear All button (trash can icon) to remove all key-value pairs stored for the selected domain.

4. Interaction with LocalStorage using Console

You can also manage Local Storage through the Console tab in Developer Tools:​

**Step 1: Open the Console Tab

In Developer Tools, click on the **Console tab.​

**Step 2: Execute Local Storage Commands

Use JavaScript commands to interact with Local Storage:​

console

localStorage.setItem("key", value); loalStorage.getItem("key); localStorage.removeItem("key"):

If you want to clear the local storage in the current domain you can do so by using the following command in the console tab. It entirely clears the localstorage of current domain this can be useful when we want to perform a clean up.

localStorage.clear();

In summary, local storage is a web storage API feature that allows websites to store data persistently as key-value pairs, surviving browser closures. Microsoft Edge offers a straightforward way to view and edit local storage. You can access it through the developer tools, and the console provides methods like **localStorage.setItem() and **localStorage.clear() for interaction.

**Important Considerations:

By following these steps, you can effectively manage Local Storage in Microsoft Edge, tailoring your browsing experience to your needs while maintaining awareness of security considerations.

**Conclusion

Viewing and editing **Local Storage in **Microsoft Edge is straightforward using the built-in **Developer Tools. This feature is especially useful for web developers and testers who need to manage persistent data across browser sessions. Whether you're **debugging or **modifying data to see how a website behaves, the **Application tab provides all the necessary tools to interact with Local Storage efficiently.