Skip to content

Instantly share code, notes, and snippets.

@RafalJDev
Last active January 31, 2019 21:18
Show Gist options
  • Save RafalJDev/6feca3a9c6ab494a102722231ea46e11 to your computer and use it in GitHub Desktop.
Save RafalJDev/6feca3a9c6ab494a102722231ea46e11 to your computer and use it in GitHub Desktop.
Expand title on youtube video titles (before: 2 lines, after running script in chrome console: 4 lines)
var elements = document.querySelectorAll('#video-title.yt-simple-endpoint.style-scope.ytd-grid-video-renderer');
elements.forEach(element => {
element.style.maxHeight = '7em';
element.style.webkitLineClamp = '7'
})
//thanks to @tylde
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment