Chromecast modification
Posted: Tue Jan 28, 2014 8:30 pm
Using chromecast tab feature for videos is nice but you can't do other work while fullscreen, the following modification to css will allow the casted popout video tab (Hold control and press play) to still look full screen and you can minimize chrome or switch tabs.
I used stylebot to do this easily.
- Code: Select all
#maxBitRate {
background-color: black;
border: none;
color: gray;
opacity: .3;
position: fixed;
top: 1px;
right: 1px;
}
#timeOffset {
background-color: black;
border: none;
color: gray;
opacity: .3;
position: fixed;
top: 1.5em;
right: 1px;
}
div.back {
display: none;
}
#player1 {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
I used stylebot to do this easily.