Skip to content

Instantly share code, notes, and snippets.

@hinovana
Created August 16, 2013 10:55
Show Gist options
  • Save hinovana/6248975 to your computer and use it in GitHub Desktop.
Save hinovana/6248975 to your computer and use it in GitHub Desktop.
JSONを整形して表示するブックマークレット
javascript:;new function(){var pre = document.body.getElementsByTagName('pre')[0],str = JSON.stringify(JSON.parse(pre.innerHTML), null, ' ');str = str.replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/'/g,"&#039;").replace(/</g,"&lt;").replace(/>/g,"&gt;");document.body.innerHTML = '<textarea style="width: 100%;height: 100%;">' + str + '</textarea>';};
@naokitoda
Copy link

33333

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment