Save ChatGPT as PDF

Turn your chats into neatly formatted PDF.

Save ChatGPT as PDFคืออะไร?

Save ChatGPT as PDF เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pdfcrowd.com และคุณลักษณะหลักของมันคือ "Turn your chats into neatly formatted PDF."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save ChatGPT as PDF

ดาวน์โหลดไฟล์ส่วนขยาย Save ChatGPT as PDF ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Save ChatGPT as PDF Save ChatGPT as PDF
ID ccjfggejcoobknjolglgmfhoeneafhhm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/save-chatgpt-as-pdf/ccjfggejcoobknjolglgmfhoeneafhhm
คำอธิบาย Turn your chats into neatly formatted PDF.
ขนาดไฟล์ 157 KB
จำนวนการติดตั้ง 539
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2024-02-29
วันที่เผยแพร่ 2024-01-11
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://pdfcrowd.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://pdfcrowd.com/save-chatgpt-as-pdf/
URL หน้าช่วยเหลือ https://pdfcrowd.com/contact/
ภาษาที่รองรับ 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"
}