Skip to content

Instantly share code, notes, and snippets.

@jordiup
Created December 5, 2022 13:06
Show Gist options
  • Save jordiup/ef398cfca5cc7e91e506ad50d7dff4e6 to your computer and use it in GitHub Desktop.
Save jordiup/ef398cfca5cc7e91e506ad50d7dff4e6 to your computer and use it in GitHub Desktop.
ChatGPT Export To HTML - run this in your browser console :)
javascript:(function() { const a = document.createElement('a'); a.href = URL.createObjectURL(new Blob([document.querySelector('[class^="ThreadLayout__NodeWrapper"]').innerHTML.replace(/<img[^>]*>/g, '').replace(/<button[^>]*>.*?<\/button>/g, '').replace(/<svg[^>]*>.*?<\/svg>/g, '')], {type: 'text/html'})); a.download = 'chatGPT.html'; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(a.href); })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment