Skip to content

Instantly share code, notes, and snippets.

View Aditya94A's full-sized avatar
🚀

Aditya Anand Aditya94A

🚀
View GitHub Profile
@arafathusayn
arafathusayn / hidetidio.js
Last active May 7, 2024 23:42
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 {