(function() { // Ustawiamy sprawdzanie co 100 milisekund const checkExist = setInterval(function() { const rows = document.querySelectorAll('.ins-v-product-attributes .row-wrapper'); if (rows.length > 0) { clearInterval(checkExist); // Znaleźliśmy tabelę, przestajemy szukać rows.forEach(row => { const nameElement = row.querySelector('.attribute-name'); if (nameElement && nameElement.textContent.trim().toLowerCase() === 'rozmiar') { row.classList.add('rozmiar-inline-row'); } }); } }, 100); // Zabezpieczenie: przestań szukać po 5 sekundach, żeby nie obciążać przeglądarki setTimeout(() => clearInterval(checkExist), 5000); })();