Hi Radu, great plugin, however had a problem with the default image on version 2.1 Fixed it by Changing line 228 to
$srcorig = $src = $default_src;
Otherwise the $srcorig had no value later on down the line.
Whoops - works on category archives, but is not working on homepage loop (static page plus news loop)....
So..round about lines 281, replace
$id = $wp_query->post->ID;
with
global $post;
$id = $post->ID;
and the plugin then works with excerpts in custom loops, as well as in archives.