ChatGPT Extra

Dynamically renders HTML code blocks inline as the page is being created.

Cos'è ChatGPT Extra?

ChatGPT Extra è un'estensione di Chrome sviluppata da Filipe Almeida, e la sua funzione principale è "Dynamically renders HTML code blocks inline as the page is being created.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT Extra

Scarica i file di estensione ChatGPT Extra 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

                        This extension adds a useful feature that allows you to view inline HTML code snippets directly in your chat window for chat.openai.com. Once installed, you can simply click the "🌐 Toggle Rendering" button to switch between the HTML code and a rendered preview. The extension uses an iframe to safely display the rendered HTML code.                    

Informazioni di Base sull'Estensione

Nome ChatGPT Extra ChatGPT Extra
ID ampbkjcmmefhmillnhoedcaonipplcbi
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi
Descrizione Dynamically renders HTML code blocks inline as the page is being created.
Dimensione del File 4.87 KB
Conteggio Installazioni 36
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-06-09
Data di Pubblicazione 2023-04-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Filipe Almeida
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Extra",
    "version": "1.0.1",
    "description": "Dynamically renders HTML code blocks inline as the page is being created.",
    "author": "Filipe Almeida",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ]
}