ChatGPT Diagrams

Render diagrams directly in ChatGPT

¿Qué es ChatGPT Diagrams?

ChatGPT Diagrams es una extensión de Chrome desarrollada por dwmkerr, y su función principal es "Render diagrams directly in ChatGPT".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ChatGPT Diagrams

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

                        The ChatGPT Diagrams extension adds a new button to the ChatGPT website - "Show Diagram". This button appears above code samples. If your code sample is in Mermaid format (a popular text based format for diagrams) then when you press the button the diagram will be shown in-line beneath the code sample.

This is a great way to improve your interactions with ChatGPT and build and refine diagrams in real time!

To try it out, enter a prompt like the one below then press the "Show Diagram" button above the code sample:

"Render a flowchart showing how a browser makes a web request and a server responds. Use mermaid.js."                    

Información Básica de la Extensión

Nombre ChatGPT Diagrams ChatGPT Diagrams
ID gllophmfnbdpgfnbmbndlihdlcgohcpn
URL Oficial https://chromewebstore.google.com/detail/chatgpt-diagrams/gllophmfnbdpgfnbmbndlihdlcgohcpn
Descripción Render diagrams directly in ChatGPT
Tamaño del Archivo 3.05 MB
Cantidad de Instalaciones 3,102
Versión Actual 0.1.2
Última Actualización 2023-12-06
Fecha de Publicación 2023-05-15
Calificación 3.00/5 Total de 4 Calificaciones
Desarrollador dwmkerr
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/dwmkerr/chatgpt-diagrams-extension
URL de la Página de Ayuda https://github.com/dwmkerr/chatgpt-diagrams-extension/issues
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Diagrams",
    "description": "Render diagrams directly in ChatGPT",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "http:\/\/localhost\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "version": "0.1.2"
}