Created
June 30, 2013 07:59
-
-
Save yoonchulkoh/5894299 to your computer and use it in GitHub Desktop.
amazonアソシエイトレポート画面の商品リンクをアフィリエイトリンクに変更する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asin_id = "[アソシエイトID]"; | |
| a = document.getElementsByTagName("a"); | |
| for (var i = 0; i < a.length; i++) { | |
| var url = a[i].href; | |
| var res = url.indexOf("http://www.amazon.co.jp/gp/product/"); | |
| if (res !== -1) { | |
| var asin = url.split("/")[5] | |
| a[i].href = "http://www.amazon.co.jp/o/ASIN/" + asin + "/" + asin_id; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment