Last active
January 4, 2021 06:34
-
-
Save ufuk/5db4d0563d12ce59c678819639e46b56 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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