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
官方網址 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
電子郵箱 [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\/*"
    ]
}