<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Facebook Sponsored News Remover | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/6327</link>
    <description>Recent comments on userscript: Facebook Sponsored News Remover</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by Kawauso</title>
      <description>Tweaked it so it runs on home.php regardless of parameters (it didn't run without the trailing ?) and only deletes if the span contents matches pefectly (seems to work fine)

&lt;code&gt;
// ==UserScript==
// @name           Facebook Sponsored News Remover
// @author         Tosk
// @date           2006-11-11
// @version        1.0
// @namespace      http://www.tosker.net
// @description    Removes sponsored news in the news feed.
// @include        http://*.facebook.com/home.php*
// ==/UserScript==

(function()
{
	var ttags = document.getElementsByTagName('span');

    //alert(ttags[0]);
	for (var i=0;i &amp;lt; ttags.length;i++)
		if (ttags[i].innerHTML == &quot;Sponsored&quot;)
		{
			ttags[i].parentNode.parentNode.parentNode.parentNode.removeChild(ttags[i].parentNode.parentNode.parentNode);
			//ttags[i].parentNode.parentNode.insertBefore(&quot;&lt;br /&gt;&lt;br /&gt;&quot;,ttags[i]);
		}
    
})();
&lt;/code&gt;</description>
      <pubDate>Sun, 26 Aug 2007 23:39:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14936:61005</guid>
      <author>Kawauso</author>
      <link>http://userscripts.org/posts/61005</link>
    </item>
    <item>
      <title>Archived Comments, replied by Kawauso</title>
      <description>&lt;p&gt;I was just looking for a script like this to deal with the sponsored news that seems to be more frequent lately. Thanks!&lt;/p&gt;</description>
      <pubDate>Sat, 18 Aug 2007 21:36:30 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14936:61006</guid>
      <author>Kawauso</author>
      <link>http://userscripts.org/posts/61006</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:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14936:61004</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/61004</link>
    </item>
  </channel>
</rss>
