Skip to content

Instantly share code, notes, and snippets.

@jlabs
Created July 15, 2024 20:13
Show Gist options
  • Save jlabs/b8600659cf87e7125c626fa6effdd852 to your computer and use it in GitHub Desktop.
Save jlabs/b8600659cf87e7125c626fa6effdd852 to your computer and use it in GitHub Desktop.
Little script to make the videos under "Watch later" for Youtube a little more cleared to see.
// Get all the progress indicators
let progress = document.querySelectorAll('#progress');
// Create an array from them
progress = Array.from(progress)
// Set all the text info cards to background of red
progress.map(p => p.parentElement.parentElement.parentElement.parentElement.nextElementSibling.style.backgroundColor = 'red')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment