document.addEventListener("DOMContentLoaded", function() {
setTimeout(function() {
document.querySelectorAll("iframe").forEach(function(frame) {
if (!frame.hasAttribute("title")) {
frame.setAttribute(
"title",
"Website Support Chat"
);
}
});
}, 1500);
});