mostinspired.com

By Jonathan Aquino Last update Jan 28, 2007 — Installed 64 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           mostinspired.com
// @namespace      http://jonathanaquino.com
// @description    Goes directly to the page featured on a mostinspired.com detail page
// @include        http://www.mostinspired.com/sites/view/*
// ==/UserScript==
var divs = document.body.getElementsByTagName('div');
for (var i = 0; i < divs.length; i++) {
    if (divs[i].className == 'site') {
        window.location = divs[i].getElementsByTagName('a')[0];
    }
}