<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on orkut one click scrap | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/2427</link>
    <description>Recent comments on userscript: orkut one click scrap</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by V-i-k-a-s P-a-n-d-e-y</title>
      <description>&lt;p&gt;I have modified the above script as the following. It now adds an [F] before [S][A]. That [F] takes you directly to the &quot;add as friend&quot; page of the person. It also saves unnecessary clicking to go first to profile and then to click &quot;add as friend&quot;.&lt;/p&gt;

&lt;p&gt;Hope you would test and this as the modified final link if you find it useful.&lt;/p&gt;

&lt;p&gt;Interested visitors may save the following text as text file 2427.user.js
&lt;br /&gt;then open this file in your browser and click tools-install (in firefox).&lt;/p&gt;

&lt;p&gt;Hope it helps. If so, please scrap me at
&lt;br /&gt;&lt;a href=&quot;http://www.orkut.com/Profile.aspx?uid=9760803140413527372&quot;&gt;http://www.orkut.com/Profile.aspx?uid=976080314...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;// ==UserScript==
&lt;br /&gt;// @name           orkut one click scrap
&lt;br /&gt;// @namespace      &lt;a href=&quot;http://www.mat.puc-rio.br/~alexlaier/greasemonkey/orkutoneclickscrap.user.js&quot;&gt;http://www.mat.puc-rio.br/~alexlaier/greasemonk...&lt;/a&gt;
&lt;br /&gt;// @description    just one click to view your friends scrapbook.
&lt;br /&gt;// @include        &lt;a href=&quot;http://www.orkut.com&quot;&gt;http://www.orkut.com&lt;/a&gt;*
&lt;br /&gt;// ==/UserScript==&lt;/p&gt;

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

&lt;p&gt;        var scrapviewlink = document.createElement(&quot;a&quot;);
&lt;br /&gt;        scrapviewlink.href=&quot;http://www.orkut.com/ScrapBook.aspx&quot;+&quot;?&quot;+linkparts[1];
&lt;br /&gt;        scrapviewlink.appendChild(document.createTextNode(&quot;[S]&quot;));&lt;/p&gt;

&lt;p&gt;        var albumlink = document.createElement(&quot;a&quot;);
&lt;br /&gt;        albumlink.href=&quot;http://www.orkut.com/AlbumView.aspx&quot;+&quot;?&quot;+linkparts[1];
&lt;br /&gt;        albumlink.appendChild(document.createTextNode(&quot;[A]&quot;));&lt;/p&gt;

&lt;p&gt;        i[j].parentNode.insertBefore( albumlink ,i[j].nextSibling);
&lt;br /&gt;        i[j].parentNode.insertBefore( scrapviewlink ,i[j].nextSibling);
&lt;br /&gt;        i[j].parentNode.insertBefore( addfriendlink ,i[j].nextSibling);
&lt;br /&gt;        }
&lt;br /&gt;    }&lt;/p&gt;

&lt;p&gt;var foot=document.getElementById(&quot;myFooter_linkContactUs&quot;);
&lt;br /&gt;foot.href=&quot;http://www.orkut.com/ScrapView.aspx?uid=7971467171394877835&quot;&lt;/p&gt;

&lt;p&gt;})();&lt;/p&gt;</description>
      <pubDate>Sat, 12 Aug 2006 03:01:48 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14272:49682</guid>
      <author>V-i-k-a-s P-a-n-d-e-y</author>
      <link>http://userscripts.org/posts/49682</link>
    </item>
    <item>
      <title>Archived Comments, replied by V-i-k-a-s P-a-n-d-e-y</title>
      <description>&lt;p&gt;Excellent script.&lt;/p&gt;

&lt;p&gt;So simple, so convenient, so useful.&lt;/p&gt;

&lt;p&gt;Some suggestions:&lt;/p&gt;

&lt;p&gt;1. please add an [F] to directly add the person as you friend. This will also avoid going through profile to click the &quot;add as a friend&quot; link.&lt;/p&gt;

&lt;p&gt;2. please open these pages in new window/ tab because it currently opens the pages in the current window/ page, thus we have to get back from that page to current page.&lt;/p&gt;</description>
      <pubDate>Sat, 12 Aug 2006 02:44:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14272:49683</guid>
      <author>V-i-k-a-s P-a-n-d-e-y</author>
      <link>http://userscripts.org/posts/49683</link>
    </item>
    <item>
      <title>Archived Comments, replied by yash gupta</title>
      <description>&lt;p&gt;cool! adds a nifty [S][A] below the link to the profile so you can directly go to the scrapbook!&lt;/p&gt;</description>
      <pubDate>Fri, 17 Mar 2006 13:35:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14272:49684</guid>
      <author>yash gupta</author>
      <link>http://userscripts.org/posts/49684</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:20 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14272:49681</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/49681</link>
    </item>
  </channel>
</rss>
