chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

What is chatGPT screenshot?

chatGPT screenshot is a Chrome extension developed by marc, and its main feature is "Take a nice screenshot of the whole chat GPT conversation".

Extension Screenshots

screenshot

Download chatGPT screenshot Extension CRX File

Download chatGPT screenshot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
Official URL https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
Description Take a nice screenshot of the whole chat GPT conversation
File Size 5.94 KB
Installation Count 3,587
Current Version 0.2
Last Updated 2023-04-15
Publish Date 2022-12-05
Rating 3.44/5 Total 9 Ratings
Developer marc
Email [email protected]
Payment Type free
Extension Website https://github.com/marcj/chrome-chatgpt-screenshot-extension
Supported Languages 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"
            ]
        }
    ]
}