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
电子邮箱 [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\/*"
    ]
}