`;
// --- Detectar posts en Blogger o HTML puro ---
var posts = document.querySelectorAll('.post-body, article');
posts.forEach(function(post) {
var paragraphs = post.getElementsByTagName('p');
// --- Insertar anuncio después del primer párrafo ---
if (paragraphs.length > 0) {
paragraphs[0].insertAdjacentHTML('afterend', adsCode);
}
// --- Insertar anuncio después del tercer párrafo ---
if (paragraphs.length > 3) {
paragraphs[2].insertAdjacentHTML('afterend', adsCode);
}
});
});