f8g

imgのsrcをmixiのにして足あと残すってネタあったけど、Greasemonkeyで。

// ==UserScript==
// @name          mixi yu-za- desuka?
// @namespace     http://d.hatena.ne.jp/arikui/
// @include       *
// ==/UserScript==

var img = document.getElementsByTagName("img");
var s = "";
for(i=0; i<img.length; i++){
	if(img[i].src.match(/http:\/\/mixi\.jp\/show_friend\.pl/i)) s += img[i].src + "\n";
}
if(s != ""){
	var pre = document.createElement("pre");
	document.body.appendChild(pre);
	pre.innerHTML = s;
	with(pre.style){
		position = "fixed";
		bottom = "0px";
		left = "0px";
		width = "15%";
	}
}

ここのダイアリーで試そう。