Skip to content

Instantly share code, notes, and snippets.

@patkub
Last active April 17, 2024 03:26
Show Gist options
  • Save patkub/6a51f7351ba7e494901cc0f6f590fae5 to your computer and use it in GitHub Desktop.
Save patkub/6a51f7351ba7e494901cc0f6f590fae5 to your computer and use it in GitHub Desktop.
zoom.us chat logger
import json
with open("file.txt", "r") as f:
data = json.load(f)
#print(data)
for message in data:
print("[" + message['time'] + "] " + message['username'] + ": " + message['content'])
// ==UserScript==
// @name zoom.us logger
// @namespace http://tampermonkey.net/
// @version 0.1
// @description grab useful data
// @author You
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("Transcript URL:")
console.log(window.location.origin + window.__data__.transcriptUrl)
console.log("Chat JSON:")
console.log(JSON.stringify(window.__data__.chatList))
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment