Skip to content

Instantly share code, notes, and snippets.

@darkronin
darkronin / pyChat.js
Last active December 17, 2024 10:42
Alerts if the pychess user has a new chat message
javascript:(function(){let g = (id) => document.getElementById(id); let lc = g('username').lastChild; let myuser = lc.innerText; if(!window.pyc) { window.pyc = {}; } window.pyc.ccl = g('messages').children.length; function cclp(){ if( window.pyc.ccl != g('messages').children.length ){ function drale(){ lc.innerText = myuser } window.pyc.ccl = g('messages').children.length; lc.innerText = "** CHAT! **" } setTimeout( drale, 800); } setInterval(cclp, 500);})();