ChatGPT Extra

Dynamically renders HTML code blocks inline as the page is being created.

ChatGPT Extraとは何ですか?

ChatGPT ExtraはFilipe Almeidaによって開発されたChromeの拡張機能で、その主な機能は「Dynamically renders HTML code blocks inline as the page is being created.」です。

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

screenshot

ChatGPT Extra拡張機能のCRXファイルをダウンロード

ChatGPT Extra拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension adds a useful feature that allows you to view inline HTML code snippets directly in your chat window for chat.openai.com. Once installed, you can simply click the "🌐 Toggle Rendering" button to switch between the HTML code and a rendered preview. The extension uses an iframe to safely display the rendered HTML code.                    

拡張機能の基本情報

名前 ChatGPT Extra ChatGPT Extra
ID ampbkjcmmefhmillnhoedcaonipplcbi
公式URL https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi
説明 Dynamically renders HTML code blocks inline as the page is being created.
ファイルサイズ 4.87 KB
インストール数 36
現在のバージョン 1.0.1
最終更新日 2023-06-09
公開日 2023-04-14
評価 5.00/5 合計 1 レビュー
開発者 Filipe Almeida
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Extra",
    "version": "1.0.1",
    "description": "Dynamically renders HTML code blocks inline as the page is being created.",
    "author": "Filipe Almeida",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ]
}