RenderGPT

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

Co je RenderGPT?

RenderGPT je rozšíření Chrome vyvinuté Matthew Downey, a jeho hlavní funkcí je „A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření RenderGPT

Stáhněte si soubory rozšíření RenderGPT ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název RenderGPT RenderGPT
ID faedgcadnkineopgicfikgggjjapeeon
Oficiální URL https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon
Popis A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
Velikost souboru 1.31 MB
Počet instalací 152
Aktuální Verze 1.3
Poslední Aktualizace 2023-06-05
Datum Vydání 2023-04-03
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Matthew Downey
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/matthewdowney/rendergpt
Podporované Jazyky 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"
            ]
        }
    ]
}