wow, chrome-extension MUCH improved - websockets

This commit is contained in:
cottongin
2025-10-30 15:17:15 -04:00
parent db2a8abe66
commit 7bb3aabd72
15 changed files with 1323 additions and 14 deletions

View File

@@ -1,11 +1,11 @@
# TODO:
## Chrome Extension
- [ ] /.old-chrome-extension/ contains OLD code that needs adjusting for new game picker format.
- [ ] remove clunky gamealias system, we are only tracking "thisgame++" and "thisgame--" now.
- [ ] ensure the extension is watching for "thisgame++" or "thisgame--" anywhere in each chat line.
- [ ] if a chat line matches capture the whole message/line, the author, and the timestamp (UTC).
- [ ] ensure our JSON output matches the new format:
- [x] /.old-chrome-extension/ contains OLD code that needs adjusting for new game picker format. (COMPLETED: New simplified extension in /chrome-extension/)
- [x] remove clunky gamealias system, we are only tracking "thisgame++" and "thisgame--" now.
- [x] ensure the extension is watching for "thisgame++" or "thisgame--" anywhere in each chat line.
- [x] if a chat line matches capture the whole message/line, the author, and the timestamp (UTC).
- [x] ensure our JSON output matches the new format:
```json
[
{
@@ -31,4 +31,4 @@
- [x] Entire App: local timezone display still isn't working. I see UTC times. (FIXED: Created dateUtils.js to properly parse SQLite UTC timestamps)
## Other Features
- [ ] Session History: export sessions to plaintext and JSON.
- [x] Session History: export sessions to plaintext and JSON. (COMPLETED: Export buttons in History page)