topical media & game development
mashup-flickr-09-findimages.user.js / js
// ==UserScript==
// @name Find Images
// @namespace http://www.dopiaza.org/flickr/greasemonkey/
// @description Find all images in a page
// @include http://www.flickr.com/*
// @include http://flickr.com/*
// ==/UserScript==
var imgElements = document.getElementsByTagName('img');
for (var i = 0; i < imgElements.length; i++)
{
var img = imgElements[i];
var src = img.getAttribute('src');
GM_log("Found Image: " + src);
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.