You can access it using the Safari Web Inspector console. Just enter the command:
localStorage.getItem('yourKeyNameHere')
and it will output the full value of the local storage to the console.
Use session storage
sessionStorage.getItem('yourKeyNameHere')
source share