>>448
googlepreviewから取得するようにすればいい。例えば、
140行目あたりを以下に書き換え。

var tmpl = '<div class="thumbnail"><a href="%s"><img class="thumbnailimg" align="left" width="111" height="82" src="http://%d.googlepreview.com/preview?s=%h" /></a></div>';

155行目あたりを以下のように。

} else {
var protocol = link.protocol;
var host = link.hostname;
var domain = protocol + '//' + host;
var d = domain.match(/:\/\/www\.(\w)|:\/\/(\w)/);
d = d[1] || d[2];
var tag = tmpl.replace(/%s/g, link.href);
tag = tag.replace(/%d/g, d);
tag = tag.replace(/%h/g, domain);
};

180行目あたりを以下の感じに書き換える。(marginは要調整。)

'.thumbnailimg { border:1px solid #BBB; margin:-8px 8px 0px 0px; }'

グリモン用のGoogle++から試行錯誤でどうにか移植しただけだから、もっといい方法があるかも。