ChatGPT Diagrams

Render diagrams directly in ChatGPT

Qu'est-ce que ChatGPT Diagrams ?

ChatGPT Diagrams est une extension Chrome développée par dwmkerr, et sa fonction principale est "Render diagrams directly in ChatGPT".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT Diagrams

Téléchargez les fichiers d'extension ChatGPT Diagrams au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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."                    

Informations de Base sur l'Extension

Nom ChatGPT Diagrams ChatGPT Diagrams
ID gllophmfnbdpgfnbmbndlihdlcgohcpn
URL Officiel https://chromewebstore.google.com/detail/chatgpt-diagrams/gllophmfnbdpgfnbmbndlihdlcgohcpn
Description Render diagrams directly in ChatGPT
Taille du Fichier 3.05 MB
Nombre d'Installations 3,102
Version Actuelle 0.1.2
Dernière Mise à Jour 2023-12-06
Date de Publication 2023-05-15
Évaluation 3.00/5 Total 4 Évaluations
Développeur dwmkerr
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/dwmkerr/chatgpt-diagrams-extension
URL de la Page d'Aide https://github.com/dwmkerr/chatgpt-diagrams-extension/issues
Langues Prises en Charge 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"
}