ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

ما هو ChatGPT Screentshot؟

ChatGPT Screentshot هو إضافة Chrome تم تطويرها بواسطة landicefu، والميزة الرئيسية لها هي "Add a button to download full screenshot of ChatGPT conversation".

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

screenshot
screenshot

تحميل ملف CRX للإضافة ChatGPT Screentshot

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

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

                        Add two buttons to Chat GPT sidebar. One for downloading the whole conversation as a JPEG file. The other button allows you to download each prompt and answer as different JPEG files. With this plugin installed, you can easily share the conversations on social media or through messaging services more easy than ever.

========== v0.3 Release Notes ==========
- Fix the image shifting problem                    

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

الاسم ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
الوصف Add a button to download full screenshot of ChatGPT conversation
حجم الملف 56.9 KB
عدد التثبيتات 145
النسخة الحالية 0.3
آخر تحديث 2022-12-14
تاريخ النشر 2022-12-11
تقييم 3.50/5 مجموع تقييمات 2
المطور landicefu
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screentshot",
    "action": [],
    "manifest_version": 3,
    "author": "Landice Fu ",
    "version": "0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Add a button to download full screenshot of ChatGPT conversation",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                "content-script.js",
                "html2canvas.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "download_button.svg"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}