orkut one click add to friend list

By akanksha Last update Jan 21, 2008 — Installed 287 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           orkut one click add to friend list
// @namespace      http://rb286.blogspot.com
// @description    just one click to add someone to ur friend-list
// @include        http://www.orkut.com*
// @include        http://orkut.com*
// ==/UserScript==

(function() {
var i=document.getElementsByTagName('a');
for (var j=i.length-1; j>1; j--) {
    var linkdata =  i[j].getAttribute("href");
    var linkparts = linkdata.split("?");
    if (linkdata.match("Profile.") == "Profile." ) {
        var friendlink = document.createElement("a");
        friendlink.href="http://www.orkut.com/FriendAdd.aspx"+"?"+linkparts[1];
        friendlink.appendChild(document.createTextNode("[F]"));

        i[j].parentNode.insertBefore( friendlink ,i[j].nextSibling);
        }
    }
})();