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...