Web player: way to increase video player size?

Hello,

I’ve been using Channels DVR recently with a relatively narrow Chrome window (half of my display). Unfortunately, this means that the video player is quite small–about 5" diagonally. Is there any way that I can configure the window that pops up for playback (perhaps through a custom stylesheet?) so that it scales to the edges of my browser window?

Edit: Figured it out! I used Stylish to create custom CSS so that the width of the modal window is 100%:

.modal-dialog {
position: relative;
width: 100%;
margin: 0px;
}

2 Likes