/*
* @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;
}
else if ( /https?:\/\/read\.amazon\.co\.jp\/?(\?.*)?/.test( location.href ) ) {
try {
let asin = JSON.parse( localStorage.getItem('last_app_activity') ).asin;
if ( asin ) {
location.href = 'https://read.amazon.co.jp/manga/' + encodeURIComponent( asin );
}
}
catch ( error ) {
}
}
})();