Twitter Print Styles

Simple print styles for saving Twitter threads as PDFs.

ما هو Twitter Print Styles؟

Twitter Print Styles هو إضافة Chrome تم تطويرها بواسطة https://tannerhodges.com، والميزة الرئيسية لها هي "Simple print styles for saving Twitter threads as PDFs.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Twitter Print Styles

قم بتنزيل ملفات الامتداد Twitter Print Styles بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Twitter Print Styles Twitter Print Styles
ID bepilablapiogeghmjiopiaoikgdcgjo
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo
الوصف Simple print styles for saving Twitter threads as PDFs.
حجم الملف 12.34 KB
عدد التثبيتات 8,422
النسخة الحالية 2.1.5
آخر تحديث 2023-07-02
تاريخ النشر 2018-01-12
تقييم 3.59/5 مجموع تقييمات 17
المطور https://tannerhodges.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tannerhodges/twitter-print-styles
عنوان صفحة المساعدة https://github.com/tannerhodges/twitter-print-styles/issues
اللغات المدعومة 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"
    }
}