If you signed up for Cricket Australia's digital streaming service this summer you'd be pretty disappointed with the very tiny size of the video stream. For those of us that can't get terrestrial TV for whatever reason and use digital services and paid good money for them this is a terrible decision.
Thankfully, with a bit of CSS-fu it's possible to get an almost full-screen video feed and get rid of all those rubbish ads to boot.
This is version one - mostly because I only did enough to be satisfied watching the first ODI. I'll keep this updated and refine it over the course of the summer.
Download and install the stylish chrome extension
Once that is done open up the style manager and "Write a new style"
Call it whatever you want and then paste the following code into the "code" section.
.mc-advert,
.current-players,
.fat-score,
.stream-switcher,
.MC-streamButtons,
.MC-statsNav {
display: none;
}
#stream-wrapper { display: none; }
.video {
position: inherit !important;
width: 100%;
height: 100%;
left: 0px !important;
right: 0px !important;
top: 0px !important;
bottom: 0px !important;
}
In the "applies to" section, choose "URLs on the domain" and then add live.cricket.com.au
Save your config and then reload your video stream, go Fullscreen and there you go, a nice big cricket video stream.
Stick on your cap, grab a coldie and enjoy your cricket like this:
Absolute legend. Thanks.
I added this to remove the score overlay since you can see the one on the stream quite clearly:
.fat_score, .fat-score {
z-index:-9999;
}