Всем спасибо за помощь, помучался с mutation) бросил это, может кому пригодиться, вышел из ситуации вот так
function waitElementDisplay(selector, time) {
if (document.querySelector(selector) != null) {
alert('Привет! ');
return;
} else {
setTimeout(function() {
waitElementDisplay(selector, time);
}, time);
}
}