Skip to content

Instantly share code, notes, and snippets.

@ajfisher
Created November 14, 2014 10:05
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ajfisher/1ea03f96caacfce11c81 to your computer and use it in GitHub Desktop.
Save ajfisher/1ea03f96caacfce11c81 to your computer and use it in GitHub Desktop.
How to make Cricket Australia Live Stream work full screen on your PC.

Making your Cricket Australia live stream bigger.

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.

Install and configure

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:

@malleedust
Copy link

Oh my god thank you. I live on a farm with no TV and satellite internet. If I ever meet you guys the beers are on me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment