Skip to content

Instantly share code, notes, and snippets.

@bathtimefish
Created February 10, 2013 02:39
Show Gist options
  • Save bathtimefish/4748115 to your computer and use it in GitHub Desktop.
Save bathtimefish/4748115 to your computer and use it in GitHub Desktop.
WebStorageに保存されているの一覧を表示するブックマークレット
javascript:(function(){a=['[sessionStorage]'];for(k%20in%20sessionStorage)a.push(k+"%20:%20"+sessionStorage.getItem(k));a.push('[localStorage]');for(k%20in%20localStorage)a.push(k+"%20:%20"+localStorage.getItem(k));alert(a.join("\n"));})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment