10 Oct 2020
A snippet for LibraryThing
A very short one, to extract book titles from the widget "Your list" on the right, in a format suitable to paste in a Org document. Unfortunately I could not find an API endpoint to do the same thing in a more structured way.
$$('ol#list_yourlist li a').forEach( book => console.log('[[' + book.href + '][' + book.textContent + ']]'))