Twitter Print Styles

Simple print styles for saving Twitter threads as PDFs.

Twitter Print Styles là gì?

Twitter Print Styles là một tiện ích mở rộng Chrome được phát triển bởi https://tannerhodges.com, và tính năng chính của nó là "Simple print styles for saving Twitter threads as PDFs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitter Print Styles

Tải xuống các tệp mở rộng Twitter Print Styles dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitter Print Styles Twitter Print Styles
ID bepilablapiogeghmjiopiaoikgdcgjo
URL Chính Thức https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo
Mô tả Simple print styles for saving Twitter threads as PDFs.
Kích Thước Tệp 12.34 KB
Số Lần Cài Đặt 8,422
Phiên Bản Hiện Tại 2.1.5
Cập Nhật Lần Cuối 2023-07-02
Ngày Phát Hành 2018-01-12
Đánh Giá 3.59/5 Tổng số 17 Đánh Giá
Nhà Phát Triển https://tannerhodges.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tannerhodges/twitter-print-styles
URL Trang Trợ Giúp https://github.com/tannerhodges/twitter-print-styles/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}