ChatGPT Diagrams
Render diagrams directly in ChatGPT
ChatGPT Diagrams란 무엇입니까?
ChatGPT Diagrams은(는) dwmkerr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Render diagrams directly in ChatGPT"입니다.
확장 프로그램 스크린샷
ChatGPT Diagrams 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |