Skip to content

Instantly share code, notes, and snippets.

@mu373
Last active October 21, 2021 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mu373/6e9567910071b4e1b16b6eecdfb9602f to your computer and use it in GitHub Desktop.
Save mu373/6e9567910071b4e1b16b6eecdfb9602f to your computer and use it in GitHub Desktop.
ISBNから大学生協オンライン書籍注文サイトで検索するブックマークレット

ISBNから大学生協オンライン書籍注文サイトで検索するブックマークレット

概要

WebページでISBNを選択した状態で、このブックマークレットを実行すると大学生協オンライン書籍注文サイトで一発で検索できます。

使う

下のソースをコピーして、ブックマークに追加してください。

ISBNを選択した状態で実行するバージョン

ISBNを選択してからでないと、正しく動きません。

javascript:(function(){var ISBN=document.getSelection();var url="https://online.univ.coop/book/products/?search%5Bcat%5D=9&search%5Bkeyw%5D="+ISBN;window.open(url,'_blank')})()

Amazon商品ページからISBNを自動取得して検索してくれるバージョン

Amazon商品ページを開いた状態でブックマークレットを実行してください。

javascript:(function(){ var asin = document.getElementById('ASIN'); var ISBN = asin.value; var url="https://online.univ.coop/book/products/?search%5Bcat%5D=9&search%5Bkeyw%5D="+ISBN; window.open(url,'_blank')})()

関連gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment