Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
Apa itu Twitter Print Styles?
Twitter Print Styles adalah ekstensi Chrome yang dikembangkan oleh https://tannerhodges.com, dan fitur utamanya adalah "Simple print styles for saving Twitter threads as PDFs.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Twitter Print Styles
Unduh file ekstensi Twitter Print Styles dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
⭐️ 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
Informasi Dasar Ekstensi
Nama | Twitter Print Styles |
ID | bepilablapiogeghmjiopiaoikgdcgjo |
URL Resmi | https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo |
Deskripsi | Simple print styles for saving Twitter threads as PDFs. |
Ukuran File | 12.34 KB |
Jumlah Instalasi | 8,422 |
Versi Saat Ini | 2.1.5 |
Terakhir Diperbarui | 2023-07-02 |
Tanggal Publikasi | 2018-01-12 |
Penilaian | 3.59/5 Total 17 Penilaian |
Pengembang | https://tannerhodges.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/tannerhodges/twitter-print-styles |
URL Halaman Bantuan | https://github.com/tannerhodges/twitter-print-styles/issues |
Bahasa yang Didukung | 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" } } |