/*
* @title Kindle Cloud Reader → Kindle まんが遷移
* @description
* @include https://read.amazon.co.jp/?asin=*
* @license MIT License
* @javascript_url
*/
( () => {
if ( location.href.match( /read\.amazon\.co\.jp\/\?asin=(.*)(?:&|$)/ ) ) {
location.href = 'https://read.amazon.co.jp/manga/' + RegExp.$1;
}
} )();