FPSBanana Modded for CSS

By JoeSimmons Last update Apr 14, 2009 — Installed 172 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name           FPSBanana Modded for CSS
// @namespace      http://userscripts.org/users/23652
// @description    Makes all category links automatically go directly to CSS
// @include        http://www.fpsbanana.com/*
// @copyright      JoeSimmons
// ==/UserScript==

var l, re = /http\:\/\/www\.fpsbanana\.com\/(guis|maps|mips|prefabs|scripting|skins|sounds|sprays|sprites|textures|tools|tuts|forum|games)$/i;

for(var i=document.links.length-1; i>=0; i--) {
l = document.links[i];
if(re.test(l.href)) l.href += '/games/2';
}