Yuwie Helper

By islandCraz Last update Apr 24, 2009 — Installed 234 times. Daily Installs: 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0

There are 1 previous version of this script.

// ========================= DO NOT EDIT! ============================
//
// ==UserScript==
// @name        Yuwie Helper
// @version	v0.1
// @author      James Herrick
// @description A little script to help you with Yuwie!
// @include     http://*.yuwie.com/*
// ==/UserScript==
//
// ======================= END OF DO NOT EDIT! ========================


var aTags = document.getElementsByTagName('a');
for (var i in aTags){
	var href = aTags[i].href;
	if(href.match(/friends/)){
		aTags[i].href = aTags[i].href + "&section=1";
	}
}