prevent talkomatic from kicking you out for being afk
// ==UserScript==
// @name prevent afk timeout
// @namespace Violentmonkey Scripts
// @icon https://classic.talkomatic.co/images/icons/favicon.png
// @version 1.0.0
//
// @match https://classic.talkomatic.co/room.html*
// @grant none
//
// @author paul
// @description prevent talkomatic from kicking you out for being afk
// @license MIT
// ==/UserScript==
(function() {
socket.on('afk warning', async (data) => socket.emit('afk response'))
})();