Skip to content

Instantly share code, notes, and snippets.

@lwd-temp
Forked from arafathusayn/hidetidio.js
Created May 7, 2024 23:42
Show Gist options
  • Save lwd-temp/58d0a18683072cf82712278a0abfbff2 to your computer and use it in GitHub Desktop.
Save lwd-temp/58d0a18683072cf82712278a0abfbff2 to your computer and use it in GitHub Desktop.
Hide TidioChat Branding (for new theme)
function hideTdo() {
var timer = null;
var target = document.querySelector('#tidio-chat iframe');
if(!target) {
if(timer !== null) {
clearTimeout(timer);
}
timer = setTimeout(hideTdo, 500);
return;
} else {
var timer2 = null;
var tdo = document.querySelector('#tidio-chat iframe')
.contentDocument
.querySelector('a[href*="tidio.com/powered"]');
if(!tdo) {
if(timer2 !== null) {
clearTimeout(timer2);
}
timer2 = setTimeout(hideTdo, 1);
return;
}
document.querySelector('#tidio-chat iframe')
.contentDocument
.querySelector('a[href*="tidio.com/powered"]')
.remove();
return true;
}
}
hideTdo();
setInterval(hideTdo, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment