ChatGPT Chat Extractor

A basic chat text Extractor

¿Qué es ChatGPT Chat Extractor?

ChatGPT Chat Extractor es una extensión de Chrome desarrollada por Invictus, y su función principal es "A basic chat text Extractor".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ChatGPT Chat Extractor

Descarga archivos de extensión ChatGPT Chat Extractor 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

                        When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time.
This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.                    

Información Básica de la Extensión

Nombre ChatGPT Chat Extractor ChatGPT Chat Extractor
ID ppkdabpmgbglpnghdbmnemflamdfgdkj
URL Oficial https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj
Descripción A basic chat text Extractor
Tamaño del Archivo 27.39 KB
Cantidad de Instalaciones 31
Versión Actual 0.0.20
Última Actualización 2023-02-07
Fecha de Publicación 2023-02-06
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Invictus
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://www.buymeacoffee.com/invic1us
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Chat Extractor",
    "description": "A basic chat text Extractor",
    "version": "0.0.20",
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon32.png"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "permissions": [
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3
}