Twitter Print Styles

Simple print styles for saving Twitter threads as PDFs.

Co je Twitter Print Styles?

Twitter Print Styles je rozšíření Chrome vyvinuté https://tannerhodges.com, a jeho hlavní funkcí je „Simple print styles for saving Twitter threads as PDFs.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitter Print Styles

Stáhněte si soubory rozšíření Twitter Print Styles ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Twitter Print Styles Twitter Print Styles
ID bepilablapiogeghmjiopiaoikgdcgjo
Oficiální URL https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo
Popis Simple print styles for saving Twitter threads as PDFs.
Velikost souboru 12.34 KB
Počet instalací 8,422
Aktuální Verze 2.1.5
Poslední Aktualizace 2023-07-02
Datum Vydání 2018-01-12
Hodnocení 3.59/5 Celkem 17 Hodnocení
Vývojář https://tannerhodges.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/tannerhodges/twitter-print-styles
URL Stránky Nápovědy https://github.com/tannerhodges/twitter-print-styles/issues
Podporované Jazyky 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"
    }
}