ChatGPT Diagrams
Render diagrams directly in ChatGPT
ChatGPT Diagramsคืออะไร?
ChatGPT Diagrams เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dwmkerr และคุณลักษณะหลักของมันคือ "Render diagrams directly in ChatGPT"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Diagrams
ดาวน์โหลดไฟล์ส่วนขยาย 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" } |