<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Facebook All Images | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/9129</link>
    <description>Recent comments on userscript: Facebook All Images</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by Compass</title>
      <description>&lt;p&gt;Any chance of a fix for new.facebook.com
&lt;br /&gt;It just shows one page of 20 photos and hides the pages, so you can't navigate through photos as usual&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;</description>
      <pubDate>Tue, 29 Jul 2008 13:43:30 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23518</guid>
      <author>Compass</author>
      <link>http://userscripts.org/posts/23518</link>
    </item>
    <item>
      <title>Archived Comments, replied by nathaniel_higgins</title>
      <description>&lt;p&gt;I can't seem to get this to work. I'm using Greasekit if that matters. It just hides the pagination but shows the normal # of photos. Is there anything specific I need to do? Thanks for any help.&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jun 2008 09:04:16 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23519</guid>
      <author>nathaniel_higgins</author>
      <link>http://userscripts.org/posts/23519</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bakahashi</title>
      <description>&lt;p&gt;Back to its stalker greatness :] thanks very much. Combine this with &quot;FB Album&quot; and commence stalking!  LOL, just kidding. Thanks once again.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 16:36:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23520</guid>
      <author>Bakahashi</author>
      <link>http://userscripts.org/posts/23520</link>
    </item>
    <item>
      <title>Archived Comments, replied by Paul Giannaros</title>
      <description>&lt;p&gt;OK, fixed it. There was a silly bug in there.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 13:32:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23521</guid>
      <author>Paul Giannaros</author>
      <link>http://userscripts.org/posts/23521</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bakahashi</title>
      <description>&lt;p&gt;It seems to have broke with the new Facebook layout.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 11:17:39 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23522</guid>
      <author>Bakahashi</author>
      <link>http://userscripts.org/posts/23522</link>
    </item>
    <item>
      <title>Archived Comments, replied by Paul Giannaros</title>
      <description>&lt;p&gt;I've never actually seen these comments, so thanks to Cody Walker who -- in true stalkerish fashion -- found me on Facebook and got me to fix it. The updated version should work just fine now, regardless of number of photos or starting page.&lt;/p&gt;

&lt;p&gt;Enjoy!&lt;/p&gt;</description>
      <pubDate>Fri, 25 Apr 2008 11:29:43 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23523</guid>
      <author>Paul Giannaros</author>
      <link>http://userscripts.org/posts/23523</link>
    </item>
    <item>
      <title>Archived Comments, replied by Bakahashi</title>
      <description>&lt;p&gt;Goes great with FB Album, thanks!&lt;/p&gt;</description>
      <pubDate>Sat, 19 Apr 2008 20:34:33 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23524</guid>
      <author>Bakahashi</author>
      <link>http://userscripts.org/posts/23524</link>
    </item>
    <item>
      <title>Archived Comments, replied by Martin Sve</title>
      <description>&lt;p&gt;// ==UserScript==
&lt;br /&gt;// @name          Facebook All Images
&lt;br /&gt;// @description   Shows all photos in an album on one page so you don't have to keep clicking through
&lt;br /&gt;// @author        Paul Giannaros
&lt;br /&gt;// @version       1.0
&lt;br /&gt;// @include       &lt;a href=&quot;http://*.facebook.com/photo_search.php&quot;&gt;http://*.facebook.com/photo_search.php&lt;/a&gt;*
&lt;br /&gt;// @include       &lt;a href=&quot;http://*.facebook.com/album.php&quot;&gt;http://*.facebook.com/album.php&lt;/a&gt;*
&lt;br /&gt;// ==/UserScript==&lt;/p&gt;

&lt;p&gt;var pageLinks = document.getElementById(&quot;pag_nav_links&quot;);
&lt;br /&gt;if(pageLinks) {
&lt;br /&gt;    var j = 0;
&lt;br /&gt;    // remove the links to the multiple pages
&lt;br /&gt;    while(document.getElementById(&quot;pag_nav_links&quot;)) {
&lt;br /&gt;        var l = document.getElementById(&quot;pag_nav_links&quot;);
&lt;br /&gt;        l.style.display = &quot;none&quot;;
&lt;br /&gt;        l.id = &quot;hidden_pag_nav_links&quot; + i++;
&lt;br /&gt;    }
&lt;br /&gt;    // and change the &quot;Photos 1 - 20 out of N&quot; to &quot;N photos&quot;
&lt;br /&gt;    var photosHeader = document.getElementsByTagName(&quot;h4&quot;)[0];
&lt;br /&gt;    var t = photosHeader.childNodes[0].nodeValue.split(/ /);
&lt;br /&gt;    photosHeader.childNodes[0].nodeValue = (t[t.length - 1]) + &quot; photos&quot;;
&lt;br /&gt;    
&lt;br /&gt;    var listItems = pageLinks.getElementsByTagName(&quot;li&quot;);
&lt;br /&gt;	
&lt;br /&gt;	var pages = ( t[t.length - 1].replace(/,/g,&quot;&quot;) ) / 20;
&lt;br /&gt;	
&lt;br /&gt;	if (pages &gt;  Math.floor(pages)) pages = Math.floor(pages) + 1;
&lt;br /&gt;	else pages = Math.floor(pages);
&lt;br /&gt;	
&lt;br /&gt;    for(var i = 2; i &amp;lt;= pages; ++i) {
&lt;br /&gt;				
&lt;br /&gt;		var nextPageUrl = window.location.href + &quot;&amp;amp;page=&quot; + i;
&lt;br /&gt;		
&lt;br /&gt;        GM_xmlhttpRequest({
&lt;br /&gt;            method: &quot;GET&quot;,
&lt;br /&gt;            url: nextPageUrl,
&lt;br /&gt;            onload: function(response) {
&lt;br /&gt;                var s = response.responseText;
&lt;br /&gt;                var albumStart = s.indexOf('id=&quot;album&quot;');
&lt;br /&gt;                var stuffWeWantStart = s.indexOf('&lt;tr&gt;', albumStart);
&lt;br /&gt;                var stuffWeWantEnd = s.indexOf('', stuffWeWantStart);&lt;/p&gt;

&lt;p&gt;                var imagesMarkup = s.substring(stuffWeWantStart, stuffWeWantEnd);
&lt;br /&gt;                var album = document.getElementById(&quot;album&quot;);
&lt;br /&gt;                album.getElementsByTagName(&quot;table&quot;)[0].innerHTML += imagesMarkup;&lt;/p&gt;

&lt;p&gt;            }
&lt;br /&gt;        });
&lt;br /&gt;    }
&lt;br /&gt;}&lt;/p&gt;

&lt;p&gt;An updated version of the script. Supports unlimited number of images (i think).&lt;/tr&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 28 Jan 2008 16:16:31 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23525</guid>
      <author>Martin Sve</author>
      <link>http://userscripts.org/posts/23525</link>
    </item>
    <item>
      <title>Archived Comments, replied by Cody Walker</title>
      <description>&lt;p&gt;this would be AWESOME if it wasn't limited to 100 photos. Seems like you could get the info from every 5th page to open the next 5 pages until it ran out. No? or even if I could view 100 pics per page would be great too. Any ideas guys? I think the dev is gone for good, 7 months sense update.&lt;/p&gt;</description>
      <pubDate>Tue, 18 Dec 2007 16:24:30 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23526</guid>
      <author>Cody Walker</author>
      <link>http://userscripts.org/posts/23526</link>
    </item>
    <item>
      <title>Archived Comments, replied by ryguy1233</title>
      <description>&lt;p&gt;Can anyone get this script to work with the other scripts (fac3book, THICKfacebook, etc.)? I love this one and would love it to work perfectly!&lt;/p&gt;</description>
      <pubDate>Tue, 23 Oct 2007 18:37:13 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23527</guid>
      <author>ryguy1233</author>
      <link>http://userscripts.org/posts/23527</link>
    </item>
    <item>
      <title>Archived Comments, replied by cwacht</title>
      <description>Looking through the code, it seems that the limiting factor in the number of images is that facebook only shows links for the first 5 pages(5*20=100).&lt;br /&gt;We just need to find a way to determine the actual number of pages.</description>
      <pubDate>Sat, 29 Sep 2007 20:38:58 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23528</guid>
      <author>cwacht</author>
      <link>http://userscripts.org/posts/23528</link>
    </item>
    <item>
      <title>Archived Comments, replied by Stew</title>
      <description>&lt;p&gt;I really wish this could show more photos!&lt;/p&gt;</description>
      <pubDate>Thu, 16 Aug 2007 03:17:30 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23529</guid>
      <author>Stew</author>
      <link>http://userscripts.org/posts/23529</link>
    </item>
    <item>
      <title>Archived Comments, replied by matthew balousek</title>
      <description>&lt;p&gt;This is a great idea save for the lack of Greased Lightbox functionality and for group photo pools of 100+.&lt;/p&gt;</description>
      <pubDate>Mon, 09 Jul 2007 04:19:09 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23530</guid>
      <author>matthew balousek</author>
      <link>http://userscripts.org/posts/23530</link>
    </item>
    <item>
      <title>Archived Comments, replied by ryguy1233</title>
      <description>&lt;p&gt;I agree with all the rest. This is a great script. If I'm not mistaken, i had 124 on a single page... I only counted once, and real quick but still, there were more in the album. Again, just reiterating, Thickfacebook and InYoFac3book does not work in while i have this script active. I'm not complaining, i just figured the more requests, the better. Plus, I'm complimenting. :-)&lt;/p&gt;</description>
      <pubDate>Tue, 03 Jul 2007 23:37:16 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23531</guid>
      <author>ryguy1233</author>
      <link>http://userscripts.org/posts/23531</link>
    </item>
    <item>
      <title>Archived Comments, replied by brand dub</title>
      <description>&lt;p&gt;this is a good script but its limited to viewing 100 pics in group folders and has no link to see the rest&lt;/p&gt;

&lt;p&gt;A user photo album is limited to 60 but a group album has no limits that I've seen yet..&lt;/p&gt;

&lt;p&gt;although this script is meant to defeat this purpose but this script could use a &quot;next (page one/two/three) button after 100 iimages&lt;/p&gt;</description>
      <pubDate>Mon, 25 Jun 2007 00:44:32 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23532</guid>
      <author>brand dub</author>
      <link>http://userscripts.org/posts/23532</link>
    </item>
    <item>
      <title>Archived Comments, replied by Rich</title>
      <description>&lt;p&gt;This script is great, but I use inYoFaceBook and GreasedLightBox... I really think you should develop this script as it is a great idea and you have most of the hard work done.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jun 2007 17:22:14 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23533</guid>
      <author>Rich</author>
      <link>http://userscripts.org/posts/23533</link>
    </item>
    <item>
      <title>Archived Comments, replied by Stew</title>
      <description>&lt;p&gt;I also notice the limited number of photos that show up.  When looking at someone's photos and they have more than 100, I can't look at any more than 100.  Maybe this is easily fixable.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Jun 2007 12:38:19 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23534</guid>
      <author>Stew</author>
      <link>http://userscripts.org/posts/23534</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jeremy Cohen</title>
      <description>&lt;p&gt;Well, I got it to do what I wanted it to intentionally at first, but it only worked once. I wanted to utilize this script with the view all photos in an album script so when I viewed a pic in an album from a person that I wasn't friends with I wouldn't have to view each one individually, instead I could view the entire photo album on one page. If you could somehow fix that it would be great.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jun 2007 08:46:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23535</guid>
      <author>Jeremy Cohen</author>
      <link>http://userscripts.org/posts/23535</link>
    </item>
    <item>
      <title>Archived Comments, replied by Kieran</title>
      <description>&lt;p&gt;Hi. Very useful script although I noticed that instead of showing all of the images it shows only up to 100.&lt;/p&gt;

&lt;p&gt;Not really a huge problem, but if, for instance, I was browsing images of a person that had 450 images,  chances are I wouldn't need to see more than the first 100, it's just the fact that the removal of the 'next page' links mean there's no easy way to see any more than the first 100.&lt;/p&gt;

&lt;p&gt;Get me?&lt;/p&gt;</description>
      <pubDate>Thu, 24 May 2007 00:44:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23536</guid>
      <author>Kieran</author>
      <link>http://userscripts.org/posts/23536</link>
    </item>
    <item>
      <title>Archived Comments, replied by Grant Bivens</title>
      <description>&lt;p&gt;This is a good idea and does what it says but it does render &quot;InYoFacebookToo&quot; image hover capabilities useless. I'm pretty fond of that script so ya...&lt;/p&gt;

&lt;p&gt;-Grant&lt;/p&gt;</description>
      <pubDate>Tue, 22 May 2007 02:53:35 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23537</guid>
      <author>Grant Bivens</author>
      <link>http://userscripts.org/posts/23537</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:06:03 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:10550:23517</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/23517</link>
    </item>
  </channel>
</rss>
