Last active
April 17, 2024 03:26
-
-
Save patkub/6a51f7351ba7e494901cc0f6f590fae5 to your computer and use it in GitHub Desktop.
zoom.us chat logger
This file contains hidden or 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
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']) |
This file contains hidden or 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
// ==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