Skip to content

Instantly share code, notes, and snippets.

@jeremyckahn
Created November 21, 2014 16:15
Show Gist options
  • Save jeremyckahn/ef7f74080993efd14c2b to your computer and use it in GitHub Desktop.
Save jeremyckahn/ef7f74080993efd14c2b to your computer and use it in GitHub Desktop.
Browse localStorage more easily.
// #protip: Save this as a Chrome Devtools snippet!
// http://www.briangrinstead.com/blog/devtools-snippets
Object.keys(window.localStorage).forEach(function (key) {
console.log(key, JSON.parse(window.localStorage[key]));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment