chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

什麼是chatGPT screenshot?

chatGPT screenshot是由marc開發的Chrome擴展程式,該擴展的主要功能是“Take a nice screenshot of the whole chat GPT conversation”。

擴展截圖

screenshot

下載chatGPT screenshot擴展crx文件

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

擴展使用說明

                        OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool).

This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.                    

擴展基本資訊

名稱 chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
官方網址 https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
簡介 Take a nice screenshot of the whole chat GPT conversation
檔案大小 5.94 KB
安裝次數 3,587
目前版本 0.2
更新時間 2023-04-15
上架時間 2022-12-05
評分 3.44/5 共 9 次評分
開發者 marc
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/marcj/chrome-chatgpt-screenshot-extension
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "chatGPT screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.2",
    "description": "Take a nice screenshot of the whole chat GPT conversation",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}