ChatGPT Screenshot

Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage

ChatGPT Screenshot là gì?

ChatGPT Screenshot là một tiện ích mở rộng Chrome được phát triển bởi kuya5220, và tính năng chính của nó là "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage".

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

screenshot

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

Tải xuống các tệp mở rộng ChatGPT Screenshot 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

                        想要保存與ChatGPT的對話,卻覺得一張一張手動截圖太麻煩嗎?使用這個插件,即可透過一次點擊獲取完整的對話紀錄!

Wanna save the conversation content with ChatGPT but too lazy to screenshot one by one? Get this extension to screenshot the complete conversation by one click!                    

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

Tên ChatGPT Screenshot ChatGPT Screenshot
ID ppggknlipehkckcplghjfcoemdeaieme
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme
Mô tả Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
Kích Thước Tệp 90.18 KB
Số Lần Cài Đặt 549
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2023-01-03
Ngày Phát Hành 2022-12-31
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển kuya5220
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/stu00608/ChatGPT-Screenshot
URL Trang Trợ Giúp https://github.com/stu00608/ChatGPT-Screenshot
Ngôn Ngữ Được Hỗ Trợ zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.0.5",
    "description": "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "html2canvas.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}