コトバノウタカタ

よしなしごとをつらつらとつづるばしょ。

Amazonリンクを短くする

なんかgetElementByIdでASIN情報が取れなくなってるぽいので、URLから無理やりとってみる。不具合とかたぶん多々あると思うけどとりあえず。10桁のみ対応。

javascript:(function(){l=location;ll=l.href;k='/product/';p=ll.indexOf(k);if(p==-1){k='/dp/';p=ll.indexOf(k);}if(p==-1){alert('no asin');}else{st=p+k.length;as=ll.substr(st,10);h='http://'+l.hostname+"/dp/"+as+"/";l.href=h;}})();