Friday, April 17th, 2009
Thumbnails.js: Screenshots via Page Glimpse
<p>Eric Ferraiuolo, inspired by the deprecation notice of Alexa, wrote a webpage thumbnails JavaScript library that lets you grab web page thumbnails via Page Glimpse:-
-
var container = document.getElementById('container'),
-
thumbs = Thumbnails({ devkey:'xxx' });
-
-
thumbs.get([
-
'http://eric.ferraiuolo.name/',
-
'http://925html.com',
-
'http://oddnut.com'
-
], append);
-
-
function append ( url, img ) {
-
var link = document.createElement('a');
-
link.href = url;
-
link.appendChild(img);
-
container.appendChild(link);
-
}
-
Related Content:











Page Glimpse sure has a very original logo.