Last active
December 30, 2024 23:53
-
-
Save afkarxyz/b1d796d8dcfc0b7b80be0f57eb8cd7e2 to your computer and use it in GitHub Desktop.
Open the Developer Tools (F12), navigate to the Console tab, and paste the script.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const observer = new PerformanceObserver((list) => { | |
list.getEntries().forEach((entry) => { | |
if (entry.name.toLowerCase().endsWith('.mp3')) { | |
console.log(entry.name); | |
} | |
}); | |
}); | |
observer.observe({ entryTypes: ['resource'] }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment