Aparently it's evil to talk about this in the lounge.
If your going to use the above template to make a link extension for your vb forum, I altered one of the js functions a bit. In chrome>content>common.js add this function.
Make sure you change it to your site url and forum root.
Code:
function tsg_open_vb(event, fid)
{
if (event && event.button != 0)
{
getBrowser().addTab("http://yoursite.com/forumhome/forumdisplay.php?f="+fid);
} else {
loadURI("http://yoursite.com/forumhome/forumdisplay.php?f="+fid);
}
}
Then you can just tsg_open_vb(event, '5') using the forum id instead of puting the whole url for every link. Smaller is better with js.
Now someone move this thing before it explodes.