Спасибо огромное. Упустил ваше решение из виду. Вот немного исправленный рабочий код, вдруг кому-нибудь повезет заниматься таким же.
{
const org = '@вашдомен';
addEventListener('click', (event) => {
const isSendButton = event.target.closest('[tabindex="570"]');
if (!isSendButton) return;
const tooltipElement = document.querySelector('[class^="tooltip-"][data-test-id^="tooltip-operand-"]');
const tooltipId = tooltipElement.getAttribute('data-test-id');
const emailMatch = tooltipId.match(/tooltip-operand-(.+)$/);
const email = emailMatch[1];
if (email.indexOf(org) === -1) {
const isConfirmed = confirm('Отправить на чужой домен?');
if (isConfirmed) return;
} else {
return;
}
event.preventDefault()
event.stopImmediatePropagation()
event.stopPropagation()
}, true);
}