(function () { let timer; function f(t, c) { clearInterval(timer); if (t.style.bottom === "0px") { c.style.bottom = "156px"; } var observer = new MutationObserver(function (mutations) { mutations.forEach(function (mutationRecord) { if (t.style.bottom === "0px") { c.style.bottom = "156px"; } else { c.style.bottom = "45px"; } }); }); observer.observe(t, { attributes: true, attributeFilter: ['style'] }); } let count = 0; timer = setInterval(() => { count++; var t = document.querySelector(".adsbygoogle.adsbygoogle-noablate[data-anchor-shown='true']"); var c = document.querySelector('.ob-grid-layout.ob-read-next-layout'); if ((t && c) || count === 10) { f(t, c); } }, 1000) })()