ManticMoo.COM All Articles Jeff's Articles
Jeffrey P. Bigham

Skip Forbes.com Welcome Screen - Greasemonkey Script

Jeffrey P. Bigham

Related Ads

The following is an extremely simple script that will allow you to skip the welcome (ad) screen on Forbes.com. It uses a function that is defined on the page itself. Instead of waiting on you (the user) to click on the link to execute this function, it is executed automatically.


// ==UserScript==
// @name           Skip Forbes Welcome Screen
// @namespace      http://www.jeffreybigham.com
// @description    Skips the Forbes.com Welcome Screen
// @include        http://www.forbes.com/fdc/welcome_mjx.shtml
// ==/UserScript==

document.location = "javascript:goBack();";

Jeffrey P. Bigham
ManticMoo.COM All Articles Jeff's Articles