honto から Amazon.co.jp のカスタマーレビューを開くブックマークレット

javascript:void(function(d,w){r=d.evaluate('//li[contains(.,"ISBN:")]/text()',d,null,XPathResult.STRING_TYPE,null);if(r&&r.stringValue){w.open('http://www.amazon.co.jp/gp/search/?field-isbn='+encodeURIComponent(r.stringValue.substr(5).trim())+'#customerReviews');}})(document,window)

これに ISBN 検索で結果が一件だったら商品ページにリダイレクトする user.js を組み合わせて使用しています。

if (document.getElementById('s-result-count').firstChild.data.indexOf('1件') === 0) {
    location.href = 'http://www.amazon.co.jp/dp/' +
    document.getElementById('result_0').getAttribute('data-asin') +
    location.hash;
}

なんかやり口が古そうなのでつっこみ歓迎。