(function() {
function removeOverlay() {
document.querySelectorAll('body > div').forEach(el => {
const style = window.getComputedStyle(el);
if(style.position === 'fixed') {
const rect = el.getBoundingClientRect();
if(rect.width > window.innerWidth * 0.8) {
el.remove();
}
}
});
}
document.addEventListener('DOMContentLoaded', removeOverlay);
window.addEventListener('load', removeOverlay);
setInterval(removeOverlay, 1000);
})();