Untitled
unknown
plain_text
a year ago
592 B
6
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');
})();Editor is loading...
Leave a Comment