Created
August 1, 2018 18:28
-
-
Save theuves/29555df4617f9e0cee97ca86cd41e231 to your computer and use it in GitHub Desktop.
Em video do YT, pegar o nome de todos os videos de uma playlist.
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
console.log(Array.from(document.querySelectorAll(".style-scope.ytd-playlist-panel-video-renderer span")).map(el => el.title.trim()).filter(Boolean).join("\n")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment