Winston Hoy gist felülvizsgálása 9 years ago. Revízióhoz ugrás
1 file changed, 15 insertions
netflix-random.js(fájl létrehozva)
| @@ -0,0 +1,15 @@ | |||
| 1 | + | // Navigate to your "My List" page before running this in your web console | |
| 2 | + | ||
| 3 | + | // Get a list of all titles | |
| 4 | + | var movies = document.querySelectorAll(".slider-item"); | |
| 5 | + | ||
| 6 | + | // pick a random number between 0 and length | |
| 7 | + | var random = Math.floor(Math.random() * movies.length); | |
| 8 | + | ||
| 9 | + | // this is our movie | |
| 10 | + | var movie = movies[random]; | |
| 11 | + | ||
| 12 | + | // we need to trigger three clicks, each one will make the next possible (due to dynamic rendering) | |
| 13 | + | movie.click(); | |
| 14 | + | movie.querySelector(".video-artwork").click(); | |
| 15 | + | movie.querySelector(".play").click(); | |
Újabb
Régebbi