Skip to content

Instantly share code, notes, and snippets.

@tspng
Created January 14, 2024 14:10
Show Gist options
  • Save tspng/4b597ae6bb6c71b110dae09878ec0168 to your computer and use it in GitHub Desktop.
Save tspng/4b597ae6bb6c71b110dae09878ec0168 to your computer and use it in GitHub Desktop.
Map Genie | Baldur's Gate 3 Map | My Categories - https://mapgenie.io/baldurs-gate-3/maps/baldurs-gate
javascript:(function() { const MY_CATEGORIES = ['AREA', 'WAYPOINT', 'UNIQUE ARMOR', 'UNIQUE WEAPON', 'SIDE QUEST']; document.querySelectorAll('#categories .category-item').forEach(e => { e.classList.contains('category-visible') && e.click(); MY_CATEGORIES.includes(e.querySelector('span[class=\"title\"]').innerText) && e.click(); }); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment