ChatGPT Extra

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

Что такое ChatGPT Extra?

ChatGPT Extra - это расширение Chrome, разработанное Filipe Almeida, и его основная функция - "Dynamically renders HTML code blocks inline as the page is being created.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ChatGPT Extra

Скачайте файлы расширений ChatGPT Extra в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название ChatGPT Extra ChatGPT Extra
ID ampbkjcmmefhmillnhoedcaonipplcbi
Официальный URL https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi
Описание Dynamically renders HTML code blocks inline as the page is being created.
Размер файла 4.87 KB
Количество установок 36
Текущая Версия 1.0.1
Последнее Обновление 2023-06-09
Дата публикации 2023-04-14
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Filipe Almeida
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
    ]
}