ChatGPT Diagrams
Render diagrams directly in ChatGPT
什么是ChatGPT Diagrams?
ChatGPT Diagrams是由dwmkerr开发的Chrome扩展程序,该扩展的主要功能是“Render diagrams directly in ChatGPT”。
扩展截图
下载ChatGPT Diagrams扩展crx文件
下载ChatGPT Diagrams扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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."
扩展基本信息
名称 | ChatGPT Diagrams |
ID | gllophmfnbdpgfnbmbndlihdlcgohcpn |
官方URL | https://chromewebstore.google.com/detail/chatgpt-diagrams/gllophmfnbdpgfnbmbndlihdlcgohcpn |
简介 | Render diagrams directly in ChatGPT |
文件大小 | 3.05 MB |
安装次数 | 3,102 |
当前版本 | 0.1.2 |
更新时间 | 2023-12-06 |
上架时间 | 2023-05-15 |
评分 | 3.00/5 共4次评分 |
开发者 | dwmkerr |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/dwmkerr/chatgpt-diagrams-extension |
帮助页面URL | https://github.com/dwmkerr/chatgpt-diagrams-extension/issues |
支持的语言 | 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" } |