http://twitter.com/taizooo とかの retweet post のユーザーアイコンを表示するやつ検討

$x('//a[contains(concat(" ",normalize-space(@class)," "), " tweet-url ") and contains(concat(" ",normalize-space(@class)," "), " screen-name ")]').forEach(function(a){
  var id = a.textContent;
  var img = document.createElement('img');
  img.src = 'http://usericons.relucks.org/twitter/' + id;
  img.style.width = '16px';
  img.style.hight = '16px';
  a.appendChild(img)
})

見易くなるかと思ったけど、TLだと全然使い物にならないでやんの。

参考: