ChatGPTable

A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images

Что такое ChatGPTable?

ChatGPTable - это расширение Chrome, разработанное xide.projext, и его основная функция - "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".

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

screenshot

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

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

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

                        1. Easy to convert HTML table of ChatGPT response to markdown table
2. Put anywhare you want markdown table 

https://chatgptable.xideprojext.xyz/                    

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

Название ChatGPTable ChatGPTable
ID ammbkfinlagkifoanpbmkiglplfjogpf
Официальный URL https://chromewebstore.google.com/detail/chatgptable/ammbkfinlagkifoanpbmkiglplfjogpf
Описание A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Размер файла 78.69 KB
Количество установок 190
Текущая Версия 0.1.8
Последнее Обновление 2023-03-19
Дата публикации 2023-03-14
Рейтинг 5.00/5 Всего 4 оценок
Разработчик xide.projext
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://chatgptable.xideprojext.xyz/
URL страницы помощи https://chatgptable.xideprojext.xyz/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images",
    "version": "0.1.8",
    "manifest_version": 3,
    "name": "ChatGPTable",
    "action": {
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon.png"
            ],
            "matches": []
        }
    ],
    "permissions": [],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ]
}