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 + "§ion=1";
}
}
