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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        ⭐️ 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
URL страницы помощи 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"
    }
}