PLAN AND PREP
Helping you plan and prepare so you can protect what matters most.
document.addEventListener('click', function (e) { const endChatBtn = e.target.closest('.MuiChip-root'); if ( endChatBtn && endChatBtn.textContent.trim().includes('End Chat') ) { const minimizeBtn = document.querySelector( 'button[aria-label="Minimize"]' ); if (minimizeBtn) { minimizeBtn.click(); } } });