Skip to content

Instantly share code, notes, and snippets.

@mimonelu
Created December 28, 2021 07:23
Show Gist options
  • Select an option

  • Save mimonelu/7f95b1844967998945dca2fb905ffa49 to your computer and use it in GitHub Desktop.

Select an option

Save mimonelu/7f95b1844967998945dca2fb905ffa49 to your computer and use it in GitHub Desktop.
Chatworkのログを雑に保存するブックマークレット
javascript: (() => { const title = document.querySelector('.chatRoomHeader__roomTitle').innerText; const text = document.querySelector('#_timeLine').innerText; const dataURL = `data:application/plain;charset=utf-8,${encodeURIComponent(text)}`; const a = document.createElement('a'); a.download = `${title}.txt`; a.href = dataURL; a.click(); })(); void 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment