Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
Τι είναι το Twitter Print Styles;
Το Twitter Print Styles είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://tannerhodges.com, και η κύρια λειτουργία του είναι "Simple print styles for saving Twitter threads as PDFs.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitter Print Styles
Λήψη αρχείων επέκτασης Twitter Print Styles σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
⭐️ 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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twitter Print Styles |
ID | bepilablapiogeghmjiopiaoikgdcgjo |
Επίσημο URL | https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo |
Περιγραφή | Simple print styles for saving Twitter threads as PDFs. |
Μέγεθος Αρχείου | 12.34 KB |
Αριθμός Εγκαταστάσεων | 8,422 |
Τρέχουσα Έκδοση | 2.1.5 |
Τελευταία Ενημέρωση | 2023-07-02 |
Ημερομηνία Δημοσίευσης | 2018-01-12 |
Αξιολόγηση | 3.59/5 Συνολικά 17 Αξιολογήσεις |
Προγραμματιστής | https://tannerhodges.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/tannerhodges/twitter-print-styles |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/tannerhodges/twitter-print-styles/issues |
Υποστηριζόμενες Γλώσσες | 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" } } |