/*
* @title amz
* @description amazon_url_shaper
* @include http://www.amazon.com/*
* @include http://www.amazon.co.jp/*
* @license MIT License
*/
// document.getElementById('ASIN').value via http://let.hatelabo.jp/rikuo/let/gYC-yunC86-NKA
(function() {
var u='/dp/'+document.querySelectorAll(`input[name^="ASIN"]`)[0].value;
history.replaceState(null, null, u);
})()