Last Updated: February 25, 2016
·
576
· alxndr

skip ads on ESPN's gamecast

sl = document.getElementById('skip-link')
i_id = setInterval(sl.click.bind(sl), 500)

If for some reason you want them back, clear the interval.

clearInterval(i_id)