Mensagens do blog por Alonzo Abernathy
24
abril
// Força a cor branca e bloqueia modificações
document.querySelectorAll('h4.fz20.mb30[data-ccn="title"]').forEach(el => {
el.style.color = 'rgb(255, 255, 255)';
el.style.setProperty('-webkit-text-fill-color', 'rgb(255, 255, 255)', 'important');
// Bloqueia futuras alterações
Object.defineProperty(el.style, 'color', {
get: () => 'rgb(255, 255, 255)',
set: () => {}
});
});
Reviews