RenderGPT

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

What is RenderGPT?

RenderGPT is a Chrome extension developed by Matthew Downey, and its main feature is "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.".

Extension Screenshots

screenshot
screenshot
screenshot

Download RenderGPT Extension CRX File

Download RenderGPT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name RenderGPT RenderGPT
ID faedgcadnkineopgicfikgggjjapeeon
Official URL https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon
Description A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
File Size 1.31 MB
Installation Count 152
Current Version 1.3
Last Updated 2023-06-05
Publish Date 2023-04-03
Rating 5.00/5 Total 1 Ratings
Developer Matthew Downey
Email [email protected]
Payment Type free
Extension Website https://github.com/matthewdowney/rendergpt
Supported Languages 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"
            ]
        }
    ]
}