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
官方網址 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"
            ]
        }
    ]
}