Save ChatGPT as PDF

Turn your chats into neatly formatted PDF.

Save ChatGPT as PDF là gì?

Save ChatGPT as PDF là một tiện ích mở rộng Chrome được phát triển bởi https://pdfcrowd.com, và tính năng chính của nó là "Turn your chats into neatly formatted PDF.".

Ả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 Save ChatGPT as PDF

Tải xuống các tệp mở rộng Save ChatGPT as PDF 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

                        The add-on adds a button to the ChatGPT webpage and with just a quick click, you can turn your chats into neatly formatted PDF files. It's super easy to use - perfect for keeping or sharing your interactions. The add-on uses the PDFCrowd API to create PDF.                    

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

Tên Save ChatGPT as PDF Save ChatGPT as PDF
ID ccjfggejcoobknjolglgmfhoeneafhhm
URL Chính Thức https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm
Mô tả Turn your chats into neatly formatted PDF.
Kích Thước Tệp 157 KB
Số Lần Cài Đặt 539
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2024-02-29
Ngày Phát Hành 2024-01-11
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://pdfcrowd.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://pdfcrowd.com/save-chatgpt-as-pdf/
URL Trang Trợ Giúp https://pdfcrowd.com/contact/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Save ChatGPT as PDF",
    "version": "1.5",
    "description": "Turn your chats into neatly formatted PDF.",
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "common.js",
                "request.js"
            ]
        }
    ],
    "minimum_chrome_version": "100"
}