Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
Was ist Twitter Print Styles?
Twitter Print Styles ist eine Chrome-Erweiterung, die von https://tannerhodges.com entwickelt wurde, und ihr Hauptmerkmal ist "Simple print styles for saving Twitter threads as PDFs.".
Erweiterungsscreenshots
Twitter Print Styles-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter Print Styles-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
⭐️ 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
Grundlegende Informationen zur Erweiterung
Name | Twitter Print Styles |
ID | bepilablapiogeghmjiopiaoikgdcgjo |
Offizielle URL | https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo |
Beschreibung | Simple print styles for saving Twitter threads as PDFs. |
Dateigröße | 12.34 KB |
Installationsanzahl | 8,422 |
Aktuelle Version | 2.1.5 |
Letztes Update | 2023-07-02 |
Veröffentlichungsdatum | 2018-01-12 |
Bewertung | 3.59/5 Insgesamt 17 Bewertungen |
Entwickler | https://tannerhodges.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tannerhodges/twitter-print-styles |
Hilfeseite URL | https://github.com/tannerhodges/twitter-print-styles/issues |
Unterstützte Sprachen | 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" } } |