// ==UserScript==
// @name          TV.com Interstitial Skip
// @description   Automatically bypass interstitial ads on TV.com
// @namespace     http://www.gozer.org/mozilla/greasemonkey/
// @include       http://www.tv.com/*
// ==/UserScript==

if(document.links.length < 25)
  for(var i = 0; i < document.links.length; i++)
    if(document.links[i].innerHTML == 'Click here to continue to TV.com')
      //window.location.reload();
      window.location.href = document.links[i];
