/*
* @title ブクログ登録
* @description 今見ているAmazon.co.jpページの書籍をブクログに登録
* @include https://www.amazon.co.jp/*
* @license MIT License
* @require
*/
var base_url = "https://booklog.jp/search?service_id=1&index=All&keyword=";
var amazon_url_re = /https?:\/\/www\.amazon\.co\.jp\/(?:.*\/)?dp\/([^?\/]+)/;
var here = location.href;
var m;
if (m = here.match(amazon_url_re)) {
/* Amazon なら URL から ASIN 抜き出し */
location.href = base_url + m[1];
} else if (m = document.body.innerText.match(/ISBN(?:-1[03])?\s*([0-9-]+)/)) {
/* そうでなければテキスト全体から ISBN 抜き出し */
location.href = base_url + m[1];
}