Untitled

 avatar
unknown
plain_text
a month ago
592 B
3
Indexable
(async function() {
    async function loadAllItems() {
        while (true) {
            const loadMoreButton = document.querySelector('.btn.load-more-btn');
            if (!loadMoreButton) break; 
            loadMoreButton.click();
            await new Promise(resolve => setTimeout(resolve, 1000)); 
        }
    }

    await loadAllItems();

    document.querySelectorAll('.row').forEach(r => {
        r.innerText.toLowerCase().includes('sniper') || (r.style.display = 'none'); // change the "includes" to w/e you want to filter
    });

    console.log('Filtering complete');
})();
Leave a Comment