Created
December 28, 2021 07:23
-
-
Save mimonelu/7f95b1844967998945dca2fb905ffa49 to your computer and use it in GitHub Desktop.
Chatworkのログを雑に保存するブックマークレット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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