<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Comments on anonym.to Link Remover | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/7024</link>
    <description>Recent comments on userscript: anonym.to Link Remover</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Bodie Chandler said @ Wed, 02 Jan 2008 01:29:33 -0000</title>
      <description>&lt;p&gt;For those with similar issues these 2 changes are the only ones I made:&lt;/p&gt;

&lt;p&gt;instead of 
&lt;br /&gt;if (linkx.href.indexOf("http://anonym.to/?") != -1)&lt;/p&gt;

&lt;p&gt;change to:&lt;/p&gt;

&lt;p&gt;if (linkx.href.indexOf("http://www.anonym.to/?") != -1)&lt;/p&gt;

&lt;p&gt;and:&lt;/p&gt;

&lt;p&gt;decodeURIComponent(linkx.href.substring(linkx.href.indexOf("") + 18));&lt;/p&gt;

&lt;p&gt;to&lt;/p&gt;

&lt;p&gt;decodeURIComponent(linkx.href.substring(linkx.href.indexOf("") + 22));  &lt;/p&gt;

&lt;p&gt;Thx for a great script!&lt;/p&gt;</description>
      <pubDate>Wed, 02 Jan 2008 01:29:33 -0000</pubDate>
      <guid isPermaLink="false">userscripts.org:script:7024:comment:26480</guid>
      <link>http://userscripts.org/scripts/show/7024#comment-26480</link>
    </item>
    <item>
      <title>Bodie Chandler said @ Wed, 02 Jan 2008 01:26:08 -0000</title>
      <description>&lt;p&gt;Hi there! Nowadays it's common they use "www."anonym.to redirects aswell. So I modified the script accordingly to fit that scenario aswell:&lt;/p&gt;

&lt;p&gt;// ==UserScript==
&lt;br /&gt;// @name          anonym.to Link Remover
&lt;br /&gt;// @description   Removes anonym.to redirects and links to the real URL
&lt;br /&gt;// @include       &lt;a href="http://*"&gt;http://*&lt;/a&gt;
&lt;br /&gt;// ==/UserScript==&lt;/p&gt;

&lt;p&gt;// Find "http://anonym.to/?" and chop the 18 digits off
&lt;br /&gt;for (var i = 0; i &amp;lt; document.links.length; i++) {
&lt;br /&gt;	linkx = document.links[i];
&lt;br /&gt;	if (linkx.href.indexOf("http://www.anonym.to/?") != -1) {
&lt;br /&gt;		linkx.href = decodeURIComponent(linkx.href.substring(linkx.href.indexOf("") + 22));
&lt;br /&gt;	}
&lt;br /&gt;}&lt;/p&gt;</description>
      <pubDate>Wed, 02 Jan 2008 01:26:08 -0000</pubDate>
      <guid isPermaLink="false">userscripts.org:script:7024:comment:26479</guid>
      <link>http://userscripts.org/scripts/show/7024#comment-26479</link>
    </item>
  </channel>
</rss>
