A Chrome extension that combines Twitter threads into a single document with multiple export options.
- Automatically detects and collects tweets in a thread
- Preserves author information, timestamps, and media
- Export options:
- HTML: Clean, styled webpage
- Markdown: Text format with basic formatting
- PDF: Portable document (requires Internet connection for library)
- Image: Screenshot of the thread (requires Internet connection for library)
- Preview thread before exporting
- Works with both twitter.com and x.com domains
The extension uses Chrome's extension APIs to:
- Detect when you're viewing a Twitter thread
- Extract all tweets and associated media from the page
- Combine them into a single organized document
- Provide options to export in your preferred format
See the Installation Instructions for details on how to install and use this extension.
This extension is built with vanilla JavaScript, HTML, and CSS. It uses:
- Chrome Extension Manifest V3
- Content scripts to interact with the Twitter page
- Background service worker for cross-page functionality
- External libraries (loaded dynamically) for PDF and image export:
- jsPDF for PDF generation
- html2canvas for image capture
MIT License
Contributions are welcome! Feel free to submit issues or pull requests if you have suggestions for improvements.
- This extension was created to solve the problem of sharing and archiving Twitter threads
- Thanks to the developers of jsPDF and html2canvas