ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

什麼是ChatGPT Screentshot?

ChatGPT Screentshot是由landicefu開發的Chrome擴展程式,該擴展的主要功能是“Add a button to download full screenshot of ChatGPT conversation”。

擴展截圖

screenshot
screenshot

下載ChatGPT Screentshot擴展crx文件

下載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
官方網址 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\/*"
            ]
        }
    ]
}