Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
Hvad er Twitter Print Styles?
Twitter Print Styles er en Chrome-udvidelse udviklet af https://tannerhodges.com, og dens hovedfunktion er "Simple print styles for saving Twitter threads as PDFs.".
Udvidelsesskærmbilleder
Download Twitter Print Styles-udvidelses-CRX-fil
Download Twitter Print Styles-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
⭐️ 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
Grundlæggende oplysninger om udvidelsen
Navn | Twitter Print Styles |
ID | bepilablapiogeghmjiopiaoikgdcgjo |
Officiel URL | https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo |
Beskrivelse | Simple print styles for saving Twitter threads as PDFs. |
Filstørrelse | 12.34 KB |
Antal Installationer | 8,422 |
Nuværende Version | 2.1.5 |
Senest Opdateret | 2023-07-02 |
Udgivelsesdato | 2018-01-12 |
Bedømmelse | 3.59/5 Samlet 17 Bedømmelser |
Udvikler | https://tannerhodges.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/tannerhodges/twitter-print-styles |
Hjælpeside-URL | https://github.com/tannerhodges/twitter-print-styles/issues |
Understøttede Sprog | 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" } } |