Get Uniquly Filtered Data Via Inspect Console
Sep 5, 2024 · 1 min read · const anchorTags = document.querySelectorAll('a'); const filteredLinks = []; const memberIds = new Set(); anchorTags.forEach(anchor => { const href = anchor.getAttribute('href'); if (!href || !href.startsWith("https://")) return; // Skip invalid link...
Join discussion