Google Chrome
- Open Google Chrome.
- On top right, click on the three vertical dots > More tools > Developer tools. Or just hit F12 for shortcut.
- Go to Application tab, and it will display all related info(s).
- To modify the value, just edit the key and value for the specific page/website.
Internet Explorer 11
- Open Internet Explorer.
- On top right, click on the gear icon > F12 Developer Tools. Or just hit F12 for shortcut.
- At the bottom, type in "localStorage" or "sessionStorage" and click Enter to see the details.
- To modify the value, type in "localStorage.setItem('key', 'value')"; same syntax when you want to set the localStorage in javascript. The same thing goes with getItem and removeItem as well.
Microsoft Edge