ChatGPT Extra

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

Wat is ChatGPT Extra?

ChatGPT Extra is een Chrome-extensie ontwikkeld door Filipe Almeida, en de belangrijkste functie is "Dynamically renders HTML code blocks inline as the page is being created.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ChatGPT Extra

Download ChatGPT Extra-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam ChatGPT Extra ChatGPT Extra
ID ampbkjcmmefhmillnhoedcaonipplcbi
Officiële URL https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi
Beschrijving Dynamically renders HTML code blocks inline as the page is being created.
Bestandsgrootte 4.87 KB
Aantal Installaties 36
Huidige Versie 1.0.1
Laatst Bijgewerkt 2023-06-09
Publicatiedatum 2023-04-14
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Filipe Almeida
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}