ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

What is ChatGPT Screentshot?

ChatGPT Screentshot is a Chrome extension developed by landicefu, and its main feature is "Add a button to download full screenshot of ChatGPT conversation".

Extension Screenshots

screenshot
screenshot

Download ChatGPT Screentshot Extension CRX File

Download ChatGPT Screentshot 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

                        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                    

Extension Basic Information

Name ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
Official URL https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Description Add a button to download full screenshot of ChatGPT conversation
File Size 56.9 KB
Installation Count 145
Current Version 0.3
Last Updated 2022-12-14
Publish Date 2022-12-11
Rating 3.50/5 Total 2 Ratings
Developer landicefu
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}