ChatGPT Diagrams

Render diagrams directly in ChatGPT

ChatGPT Diagramsとは何ですか?

ChatGPT Diagramsはdwmkerrによって開発されたChromeの拡張機能で、その主な機能は「Render diagrams directly in ChatGPT」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

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 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
Eメール [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"
}