chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

ما هو chatGPT screenshot؟

chatGPT screenshot هو إضافة Chrome تم تطويرها بواسطة marc، والميزة الرئيسية لها هي "Take a nice screenshot of the whole chat GPT conversation".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة chatGPT screenshot

قم بتنزيل ملفات الامتداد chatGPT screenshot بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool).

This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.                    

معلومات أساسية عن التمديد

الاسم chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
عنوان URL الرسمي https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
الوصف Take a nice screenshot of the whole chat GPT conversation
حجم الملف 5.94 KB
عدد التثبيتات 3,587
النسخة الحالية 0.2
آخر تحديث 2023-04-15
تاريخ النشر 2022-12-05
تقييم 3.44/5 مجموع تقييمات 9
المطور marc
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/marcj/chrome-chatgpt-screenshot-extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "chatGPT screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.2",
    "description": "Take a nice screenshot of the whole chat GPT conversation",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}