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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        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/
عنوان صفحة المساعدة 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"
}