Skip to content

Instantly share code, notes, and snippets.

@rick
Created March 24, 2013 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rick/5230025 to your computer and use it in GitHub Desktop.
Save rick/5230025 to your computer and use it in GitHub Desktop.
Make it possible to skip NCAA ads in March Madness live stream. Run this with dotjs and, when the main flash app with the game schedule comes on, click the '75th anniversary' icon at the bottom of the page, then proceed to your game. Should let you use video controls again (usually disabled when ads are on).
$("#footer span.footerText a").first().click(function(){
event.preventDefault();
orig = $('#mainApp object param[name="flashvars"]').attr('value');
replacement = orig.replace('superduperdevtime=false', 'superduperdevtime=true');
$('#mainApp object param[name="flashvars"]').attr('value', replacement);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment