Skip to content

Instantly share code, notes, and snippets.

@ufuk
Last active January 4, 2021 06:34
Show Gist options
  • Save ufuk/5db4d0563d12ce59c678819639e46b56 to your computer and use it in GitHub Desktop.
Save ufuk/5db4d0563d12ce59c678819639e46b56 to your computer and use it in GitHub Desktop.
// Print line by line
document.querySelectorAll('pre.msg-payload').forEach(it => console.log(it.innerText));
// Pretty-printed JSON array (If payloads are JSON)
JSON.stringify(Array.from(document.querySelectorAll('pre.msg-payload')).map(it => JSON.parse(it.innerText)), null, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment