memo.xight.org

日々のメモ

カテゴリ : Amazon

1ページ目 / 全1ページ

Amazon の画像置換

Summary

chalow で Amazon の画像置換を利用してみる.

amazon.js

function replaceImage(img) {
	if (img.width == '1' && img.src.match(/\.01\./)) {
		img.src = 'http://images-jp.amazon.com/images/G/09/x-locale/detail/thumb-no-image.gif';
		img.width = 98;
		img.height = 140;
	} else if (img.width == '1') {
		img.src = img.src.replace('.09.','.01.');
	}
}


cl.conf

  - 各 head タグ内に記述
<script src="path/to/amazon.js" type="text/javascript"></script>


  - amazon リンクの作成プラグインを変更
<img src="/path/to/image" onload="replaceImage(this)" />


Reference

  hail2u.net - 2004-05-30 - Amazon の画像置換 #2
  http://hail2u.net/blog/coding/air_2.html

Tiny Amazon URL ブックマークレット via Amazon Hacks

Source

javascript:
var afid='AmazonアソシエイトID';
var u=document.location.href;
javascript:
var ai=u.indexOf('ASIN');var asin=u.substring(ai+5,ai+15);
var link='http://amazon.co.jp/o/ASIN/'+asin+'/'+afid+'/ref=nosim;
var x=prompt('Tiny URL',link);

Reference

  NDO::Weblog - 2004-04-26
  http://naoya.dyndns.org/~naoya/mt/archives/001047.html

via

  福めも - 2004-11-18
  http://www.fukulog.com/memo/2004-11-18.html#2004-11-18-4