RenderGPT

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

Cos'è RenderGPT?

RenderGPT è un'estensione di Chrome sviluppata da Matthew Downey, e la sua funzione principale è "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione RenderGPT

Scarica i file di estensione RenderGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome RenderGPT RenderGPT
ID faedgcadnkineopgicfikgggjjapeeon
URL Ufficiale https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon
Descrizione A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
Dimensione del File 1.31 MB
Conteggio Installazioni 152
Versione Corrente 1.3
Ultimo Aggiornamento 2023-06-05
Data di Pubblicazione 2023-04-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Matthew Downey
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/matthewdowney/rendergpt
Lingue Supportate 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"
            ]
        }
    ]
}