GameRankings direct to review

By Smiths Last update Oct 18, 2008 — Installed 144 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0

There are 1 previous version of this script.

// ==UserScript==
// @name           GameRankings direct to review
// @namespace      Smiths
// @include        http://*gamerankings.com/itemrankings/launch*
// ==/UserScript==

function frameset()
{
	var frames = document.getElementsByTagName('frame');
	for (var i = 0; i < frames.length; i++) {
		if (frames[i].name.indexOf('LinkFrame') != -1) {
			window.location.replace(frames[i].src);
		}
	}
}
window.onload = frameset();