サクラチェッカーで調べるブックマークレット
自分で書いたけど、公式で配布されていた
https://sakura-checker.jp/article/bookmarklet/
Amazonの商品ページで実行すると、サクラチェッカーを新しいタブで開くブックマークレット
code:js
;(() => {
const url = new URL(window.location.href)
if (url.host !== 'www.amazon.co.jp') {
return
}
location.href.match(/\/(?:dp|product|asin)\/(^/?%+)/i)
window.open(https://sakura-checker.jp/search/${RegExp.lastParen}/)
})()
code:js
javascript:(()=>{const a=new URL(window.location.href);"www.amazon.co.jp"!==a.host||(location.href.match(/\/(?:dp|product|asin)\/(^/?%+)/i),window.open(https://sakura-checker.jp/search/${RegExp.lastParen}/))})();