Skip to content

Instantly share code, notes, and snippets.

@tobbbe
Created October 14, 2013 17:31
Show Gist options
  • Save tobbbe/6979087 to your computer and use it in GitHub Desktop.
Save tobbbe/6979087 to your computer and use it in GitHub Desktop.
show size of localstorage + bookmarklet
Bookmarklet:
javascript: var x,log=[],total=0;for (x in localStorage){log.push(x + " = " + ((localStorage[x].length * 2)/1024/1024).toFixed(2) + " MB"); total+=localStorage[x].length * 2}; log.push("Total = " + (total/1024/1024).toFixed(2)+ " MB"); alert(log.join("\n"));
Console:
for(var x in localStorage)console.log(x+"="+((localStorage[x].length * 2)/1024/1024).toFixed(2)+" MB");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment