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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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\/*"
            ]
        }
    ]
}