ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

Was ist ChatGPT Screentshot?

ChatGPT Screentshot ist eine Chrome-Erweiterung, die von landicefu entwickelt wurde, und ihr Hauptmerkmal ist "Add a button to download full screenshot of ChatGPT conversation".

Erweiterungsscreenshots

screenshot
screenshot

ChatGPT Screentshot-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Screentshot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
Offizielle URL https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Beschreibung Add a button to download full screenshot of ChatGPT conversation
Dateigröße 56.9 KB
Installationsanzahl 145
Aktuelle Version 0.3
Letztes Update 2022-12-14
Veröffentlichungsdatum 2022-12-11
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler landicefu
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}