Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
Cos'è Twitter Print Styles?
Twitter Print Styles è un'estensione di Chrome sviluppata da https://tannerhodges.com, e la sua funzione principale è "Simple print styles for saving Twitter threads as PDFs.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Print Styles
Scarica i file di estensione Twitter Print Styles in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
⭐️ 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
Informazioni di Base sull'Estensione
Nome | Twitter Print Styles |
ID | bepilablapiogeghmjiopiaoikgdcgjo |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo |
Descrizione | Simple print styles for saving Twitter threads as PDFs. |
Dimensione del File | 12.34 KB |
Conteggio Installazioni | 8,422 |
Versione Corrente | 2.1.5 |
Ultimo Aggiornamento | 2023-07-02 |
Data di Pubblicazione | 2018-01-12 |
Valutazione | 3.59/5 Totale 17 Valutazioni |
Sviluppatore | https://tannerhodges.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tannerhodges/twitter-print-styles |
URL della Pagina di Aiuto | https://github.com/tannerhodges/twitter-print-styles/issues |
Lingue Supportate | 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" } } |