RenderGPT

A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.

什么是RenderGPT?

RenderGPT是由Matthew Downey开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.”。

扩展截图

screenshot
screenshot
screenshot

下载RenderGPT扩展crx文件

下载RenderGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.

The extension adds a "render" button to any HTML or PlantUML code blocks in a ChatGPT conversation.

Clicking the button renders the HTML in an iframe, and allows selecting other code blocks (JavaScript, CSS) from the conversation for inclusion, mixing and matching sources.

See examples at https://github.com/matthewdowney/rendergpt.                    

扩展基本信息

名称 RenderGPT RenderGPT
ID faedgcadnkineopgicfikgggjjapeeon
官方URL https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon
简介 A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
文件大小 1.31 MB
安装次数 152
当前版本 1.3
更新时间 2023-06-05
上架时间 2023-04-03
评分 5.00/5 共1次评分
开发者 Matthew Downey
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/matthewdowney/rendergpt
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "RenderGPT",
    "description": "A Chrome extension to render HTML\/JavaScript\/CSS from ChatGPT into iframes.",
    "version": "1.3",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content_proxy.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "js\/*",
                "rendergpt.css"
            ]
        }
    ]
}