Created
February 28, 2022 15:06
-
-
Save tihhgoncalves/51b0e5c40589901a01b9ada07cb63b20 to your computer and use it in GitHub Desktop.
Disqus - Esconder anúncios no plano gratuito
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Script que oculta anuncios do Disqus | @tihhgoncalves **/ | |
setInterval(() => { | |
var i, frames; | |
frames = document.querySelectorAll("#disqus_thread iframe"); | |
for (i = 0; i < frames.length; ++i) { | |
let src = frames[i].src; | |
if (!src) { | |
frames[i].style.display = "none"; | |
} | |
} | |
}, 500) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
✳️ Escrevi um artigo sobre isso. Se te interessar, clique aqui.