Skip to content

Instantly share code, notes, and snippets.

View xtasyarmada's full-sized avatar

XtasyArmada xtasyarmada

View GitHub Profile
@xtasyarmada
xtasyarmada / yt_theatre_bookmarklet.js
Last active July 10, 2022 20:04
A Bookmarklet to Set a Theatre Mode for YouTube Live videos.
javascript:(function() { var video = document.querySelector('.html5-video-container > video.video-stream.html5-main-video'); video.style.width = '100%'; video.style.height = 'auto'; var columns = document.querySelector('#columns.style-scope.ytd-watch-flexy'); columns.style.maxWidth = 'initial'; var chat = document.querySelector('#chat.style-scope.ytd-watch-flexy'); chat.style.height = '90vh';})();