ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

ChatGPT Screentshot là gì?

ChatGPT Screentshot là một tiện ích mở rộng Chrome được phát triển bởi landicefu, và tính năng chính của nó là "Add a button to download full screenshot of ChatGPT conversation".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Screentshot

Tải xuống các tệp mở rộng ChatGPT Screentshot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
URL Chính Thức https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Mô tả Add a button to download full screenshot of ChatGPT conversation
Kích Thước Tệp 56.9 KB
Số Lần Cài Đặt 145
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2022-12-14
Ngày Phát Hành 2022-12-11
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển landicefu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}