Yahoo Games Sponsor Skip

By JoeSimmons Last update Oct 24, 2008 — Installed 111 times. Daily Installs: 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Yahoo Games Sponsor Skip
// @namespace      http://userscripts.org/users/23652
// @description    Automatically skips the sponsor page for you
// @include        http://games.yahoo.com/*
// @copyright      JoeSimmons
// ==/UserScript==

function main() {
if(/is brought to you by our sponsor/.test(document.body.textContent)) {
var l = document.evaluate("//a[contains(@href, '/games/login2?page=')]",document,null,9,null).singleNodeValue;
if(l) {top.location=l.href;}
}
}

window.addEventListener('load', main, false);