ChatGPT Screenshot

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

什麼是ChatGPT Screenshot?

ChatGPT Screenshot是由kuya5220開發的Chrome擴展程式,該擴展的主要功能是“Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage”。

擴展截圖

screenshot

下載ChatGPT Screenshot擴展crx文件

下載ChatGPT Screenshot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        想要保存與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!                    

擴展基本資訊

名稱 ChatGPT Screenshot ChatGPT Screenshot
ID ppggknlipehkckcplghjfcoemdeaieme
官方網址 https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme
簡介 Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
檔案大小 90.18 KB
安裝次數 549
目前版本 0.0.5
更新時間 2023-01-03
上架時間 2022-12-31
評分 5.00/5 共 1 次評分
開發者 kuya5220
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/stu00608/ChatGPT-Screenshot
說明頁面URL https://github.com/stu00608/ChatGPT-Screenshot
支援的語言 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"
        }
    ]
}