ChatGPT Extra

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

Co to jest ChatGPT Extra?

ChatGPT Extra to rozszerzenie Chrome opracowane przez Filipe Almeida, a jego główną funkcją jest „Dynamically renders HTML code blocks inline as the page is being created.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChatGPT Extra

Pobierz pliki rozszerzeń ChatGPT Extra w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Extra ChatGPT Extra
ID ampbkjcmmefhmillnhoedcaonipplcbi
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi
Opis Dynamically renders HTML code blocks inline as the page is being created.
Rozmiar pliku 4.87 KB
Liczba instalacji 36
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2023-06-09
Data Publikacji 2023-04-14
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Filipe Almeida
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}