Open Source Web Design - Remove Top Frame

By fire_015 Last update May 12, 2007 — Installed 170 times. Daily Installs: 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Open Source Web Design - Remove Top Frame
// @namespace      http://codr.us
// @description    This removes the frame at the top when you preview designs on oswd.org
// @include        http://www.oswd.org/design/preview/id/*
// ==/UserScript==

var frames = document.getElementsByTagName('frame');
top.location.href = frames[1].src;