ChatGPT Diagrams
Render diagrams directly in ChatGPT
O que é ChatGPT Diagrams?
ChatGPT Diagrams é uma extensão do Chrome desenvolvida por dwmkerr, e sua principal característica é "Render diagrams directly in ChatGPT".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT Diagrams
Baixe arquivos de extensão ChatGPT Diagrams no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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."
Informações Básicas da Extensão
Nome | ChatGPT Diagrams |
ID | gllophmfnbdpgfnbmbndlihdlcgohcpn |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-diagrams/gllophmfnbdpgfnbmbndlihdlcgohcpn |
Descrição | Render diagrams directly in ChatGPT |
Tamanho do Arquivo | 3.05 MB |
Contagem de Instalações | 3,102 |
Versão Atual | 0.1.2 |
Última Atualização | 2023-12-06 |
Data de Publicação | 2023-05-15 |
Classificação | 3.00/5 Total de 4 Avaliações |
Desenvolvedor | dwmkerr |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/dwmkerr/chatgpt-diagrams-extension |
URL da Página de Ajuda | https://github.com/dwmkerr/chatgpt-diagrams-extension/issues |
Idiomas Suportados | 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" } |