chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

¿Qué es chatGPT screenshot?

chatGPT screenshot es una extensión de Chrome desarrollada por marc, y su función principal es "Take a nice screenshot of the whole chat GPT conversation".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión chatGPT screenshot

Descarga archivos de extensión chatGPT screenshot en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
URL Oficial https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
Descripción Take a nice screenshot of the whole chat GPT conversation
Tamaño del Archivo 5.94 KB
Cantidad de Instalaciones 3,587
Versión Actual 0.2
Última Actualización 2023-04-15
Fecha de Publicación 2022-12-05
Calificación 3.44/5 Total de 9 Calificaciones
Desarrollador marc
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/marcj/chrome-chatgpt-screenshot-extension
Idiomas Soportados 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"
            ]
        }
    ]
}