Skip to content

Instantly share code, notes, and snippets.

@mokkunp
Last active June 27, 2017 02:46
Show Gist options
  • Save mokkunp/87753a4c2cacadcde40a82db449a8058 to your computer and use it in GitHub Desktop.
Save mokkunp/87753a4c2cacadcde40a82db449a8058 to your computer and use it in GitHub Desktop.
Amazonのページからscrapboxの読書ページを作るブックマークレット

https://scrapbox.io/xxxxxxxxxx/の部分を自分のプロジェクトに変えて使って下さい

javascript: (function() { var title = document.getElementById("ebooksProductTitle");if(title == null){ title = document.getElementById("productTitle")};title = title.innerText;  var imageUrl = document.getElementById("ebooksImgBlkFront");if(imageUrl == null) {imageUrl = document.getElementById("imgBlkFront")};imageUrl = imageUrl.src;var author = document.getElementById("byline").innerText;location.href ="https://scrapbox.io/xxxxxxxxxx/" + encodeURIComponent(title) + "?body=" + encodeURIComponent(author + "\n[" + imageUrl + "]\n\n" + location.origin + location.pathname.match(/\/dp\/[^/]+/)[0] + "\n\n#book")})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment