setInterval(() => { document.querySelectorAll('[style]').forEach(el => { const style = el.getAttribute('style').toLowerCase(); // Убиваем синие рамки if (style.includes('3498db')) { el.style.borderColor = '#E2E8F0'; } // Выжигаем голубые бейджи категорий if (style.includes('e1f5fe')) { el.style.background = '#F1F5F9'; el.style.color = '#475569'; el.style.border = '1px solid #E2E8F0'; } // Уничтожаем желтый пунктир if (style.includes('fff9c4') || style.includes('dashed')) { el.style.background = '#F8FAFC'; el.style.border = '1px solid #E2E8F0'; el.style.borderLeft = '4px solid #0F172A'; el.style.color = '#64748B'; } }); }, 250); // Прочесывает сайт 4 раза в секунду