I wrote this little bookmarklet to help me instantly grab the large/original version of any Flickr photo. Funnily enough, because of Flickr's consistent filenaming scheme, it also works for photos where the See different sizes
option normally remains hidden:
view big (gets 1024px version; should work for most photos)
view original (gets full version as uploaded; works for photos pre-March 2007)
Drag the link above to your Bookmarks Toolbar (or right click, Add to Favorites), then click it when viewing a single Flickr photo page.
Here's the formatted source code, if you're into that sorta thing:
for (m in M=document.getElementsByTagName('img'))
{
s = M[m].src;
if (s && s.match(/static/) && !s.match(/_s|buddy/))
{
void(window.open(s.replace('.jpg','_o.jpg'),'_self'));
break;
}
}li:hover, ::after and content: attr(href) in action...<ul> elements as a flat comma-separated list ul.links { list-style: none; margin: 0; padding: 0; }
ul.links li { display: inline; }
ul.links li:after { content: ","; }
ul.links li:last-child:after { content: ""; }The advantage of this is that changing the default separator from a comma to | or - or whatever now means only having to change one character in the stylesheet.
Note: Internet Explorer doesn't support the css content attribute or :after and :last-child pseudo-classes, so the commas won't appear in IE.
padding-left: 10px; text-indent: -10px; to an element makes all lines of that element appear indented except the first one.
1. posted by Mathieu 'p01' HENRI at 16:41 on November 14, 2005
2. posted by Milo at 16:42 on November 14, 2005
3. posted by Calm_Pear at 11:17 on November 15, 2005
4. posted by Milo at 11:19 on November 15, 2005
5. posted by Mathieu 'p01' HENRI at 13:21 on November 15, 2005
6. posted by Jan! at 23:04 on November 15, 2005
7. posted by Milo at 23:15 on November 15, 2005
By the other two I meant the missing "=" and the missing quote in the first line.
8. posted by Mathieu 'p01' HENRI at 00:28 on November 17, 2005