Twitter Print Styles

Simple print styles for saving Twitter threads as PDFs.

Wat is Twitter Print Styles?

Twitter Print Styles is een Chrome-extensie ontwikkeld door https://tannerhodges.com, en de belangrijkste functie is "Simple print styles for saving Twitter threads as PDFs.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Twitter Print Styles

Download Twitter Print Styles-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        ⭐️ 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                    

Basisinformatie over de Extensie

Naam Twitter Print Styles Twitter Print Styles
ID bepilablapiogeghmjiopiaoikgdcgjo
Officiële URL https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo
Beschrijving Simple print styles for saving Twitter threads as PDFs.
Bestandsgrootte 12.34 KB
Aantal Installaties 8,422
Huidige Versie 2.1.5
Laatst Bijgewerkt 2023-07-02
Publicatiedatum 2018-01-12
Beoordeling 3.59/5 Totaal 17 Beoordelingen
Ontwikkelaar https://tannerhodges.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/tannerhodges/twitter-print-styles
Help Pagina-URL https://github.com/tannerhodges/twitter-print-styles/issues
Ondersteunde Talen 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"
    }
}