Browser: Check or modify localStorage in Google Chrome, Internet Explorer 11 and Microsoft Edge

Google Chrome
  1. Open Google Chrome.
  2. On top right, click on the three vertical dots > More tools > Developer tools. Or just hit F12 for shortcut.
  3. Go to Application tab, and it will display all related info(s).
  4. To modify the value, just edit the key and value for the specific page/website.

Internet Explorer 11
  1. Open Internet Explorer.
  2. On top right, click on the gear icon > F12 Developer Tools. Or just hit F12 for shortcut.
  3. At the bottom, type in "localStorage" or "sessionStorage" and click Enter to see the details.
  4. 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
  1. Open Microsoft Edge.
  2. On top right, click on the three horizontal dots > More tools > Developer Tools. Or just hit F12 for shortcut.
  3. Go to Storage tab, and it will display all related info(s).
  4. To modify the value, just edit the key and value for the specific page/website.