Twitter Print Styles

Simple print styles for saving Twitter threads as PDFs.

Vad är Twitter Print Styles?

Twitter Print Styles är en Chrome-tillägg utvecklad av https://tannerhodges.com, och dess huvudfunktion är "Simple print styles for saving Twitter threads as PDFs.".

Tilläggsskärmbilder

screenshot

Ladda ner Twitter Print Styles-förlängningens CRX-fil

Ladda ner Twitter Print Styles-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        ⭐️ 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äggande Information om Tillägg

Namn Twitter Print Styles Twitter Print Styles
ID bepilablapiogeghmjiopiaoikgdcgjo
Officiell webbadress https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo
Beskrivning Simple print styles for saving Twitter threads as PDFs.
Filstorlek 12.34 KB
Antal Installationer 8,422
Aktuell Version 2.1.5
Senast Uppdaterad 2023-07-02
Publiceringsdatum 2018-01-12
Betyg 3.59/5 Totalt 17 Betyg
Utvecklare https://tannerhodges.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tannerhodges/twitter-print-styles
Hjälpsida URL https://github.com/tannerhodges/twitter-print-styles/issues
Stödda Språk 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"
    }
}