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 |
官方網址 | 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" } |