<script>
// ° REMOVER URL E TEXTO TECNOLOGIA BLOGGER - IMEDIATAMENTE APÓS CARREGAR °
// °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
function removeBloggerAttributionImmediate() {
const bloggerElements = document.querySelectorAll('.blogger');
bloggerElements.forEach(element => {
const links = element.querySelectorAll('a');
links.forEach(link => {
link.removeAttribute('href');
link.style.display = 'none';
});
element.style.fontSize = '0px';
element.style.display = 'none';
});
}
window.addEventListener('load', removeBloggerAttributionImmediate);
</script>
<script>
// ° REMOVER TECNOLOGIA DO BLOGGER COM DELAY DE 1 SEGUNDO °
// °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
function removeBloggerAttributionWithDelay() {
const bloggerElements = document.querySelectorAll('.blogger');
bloggerElements.forEach(element => {
const links = element.querySelectorAll('a');
links.forEach(link => {
link.removeAttribute('href');
link.style.display = 'none';
});
element.style.fontSize = '0px';
element.style.display = 'none';
});
}
window.addEventListener('load', () => {
setTimeout(removeBloggerAttributionWithDelay, 3);
});
</script>