setAuthor()

in app/BookInfo.ts [24:33]


  setAuthor() {
    const tmpAuthor: any = document
      .getElementById('bylineInfo')
      .getElementsByClassName('a-link-normal')[0];
    try {
      this.author = tmpAuthor.innerText.replace('のAmazon著者ページを見る', '');
    } catch (err) {
      this.author = tmpAuthor.innerHTML.replace('のAmazon著者ページを見る', '');
    }
  }