Execute this in the browser console while visiting a playlist page like https://www.beatport.com/genre/techno-raw-deep-hypnotic/92/top-100
// Find all .container elements
const containers = document.querySelectorAll('.container');
// Collect details (song, artist, and additional info) from each container
const details = Array.from(containers).map(container => {