Twitter Print Styles

Simple print styles for saving Twitter threads as PDFs.

Qu'est-ce que Twitter Print Styles ?

Twitter Print Styles est une extension Chrome développée par https://tannerhodges.com, et sa fonction principale est "Simple print styles for saving Twitter threads as PDFs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitter Print Styles

Téléchargez les fichiers d'extension Twitter Print Styles au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Twitter Print Styles Twitter Print Styles
ID bepilablapiogeghmjiopiaoikgdcgjo
URL Officiel https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo
Description Simple print styles for saving Twitter threads as PDFs.
Taille du Fichier 12.34 KB
Nombre d'Installations 8,422
Version Actuelle 2.1.5
Dernière Mise à Jour 2023-07-02
Date de Publication 2018-01-12
Évaluation 3.59/5 Total 17 Évaluations
Développeur https://tannerhodges.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tannerhodges/twitter-print-styles
URL de la Page d'Aide https://github.com/tannerhodges/twitter-print-styles/issues
Langues Prises en Charge 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"
    }
}