Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
What is Twitter Print Styles?
Twitter Print Styles is a Chrome extension developed by https://tannerhodges.com, and its main feature is "Simple print styles for saving Twitter threads as PDFs.".
Extension Screenshots
Download Twitter Print Styles Extension CRX File
Download Twitter Print Styles extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
⭐️ Features • Default print styles (print-friendly colors, expand images, hide extra elements). • Link the first tweet's timestamp to the current URL (so you don't lose it in the PDF). • Click icon to load entire thread and print. • Click icon again to stop current task. 🤷♂️ Caveats • Does not support modals/popups. • Does not follow "Show this thread" links. • Only loads inline replies, not "More Tweets" or "Show more replies" at the very end of a thread. 👀 Alternatives • https://jikji.pro • https://threadreaderapp.com
Extension Basic Information
Name | Twitter Print Styles |
ID | bepilablapiogeghmjiopiaoikgdcgjo |
Official URL | https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo |
Description | Simple print styles for saving Twitter threads as PDFs. |
File Size | 12.34 KB |
Installation Count | 8,422 |
Current Version | 2.1.5 |
Last Updated | 2023-07-02 |
Publish Date | 2018-01-12 |
Rating | 3.59/5 Total 17 Ratings |
Developer | https://tannerhodges.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/tannerhodges/twitter-print-styles |
Help Page URL | https://github.com/tannerhodges/twitter-print-styles/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Print Styles", "version": "2.1.5", "description": "Simple print styles for saving Twitter threads as PDFs.", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "css": [ "index.css" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "icon-128.png" } } |