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) { |
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
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<link rel="icon" href="favico.png"> | |
<title>Título do Site</title> | |
<!-- Bootstrap 5 --> |