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.

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

                        Step
1. Click "Table copy" button to convert HTML table of ChatGPT response to markdown table
2. Paste anywhere you want markdown table 

https://chatgptable.xideprojext.xyz/                    

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

Название ChatGPTable ChatGPTable
ID jboebkcdfhknhklkombfhpflpoaebpnk
Официальный URL https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk
Описание A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Размер файла 119 KB
Количество установок 48
Текущая Версия 0.2.0
Последнее Обновление 2023-03-21
Дата публикации 2023-03-21
Рейтинг 5.00/5 Всего 1 оценок
Разработчик xide.projext
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://chatgptable.xideprojext.xyz/
URL страницы помощи https://chatgptable.xideprojext.xyz/
Поддерживаемые языки en
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.2.0",
    "manifest_version": 3,
    "name": "ChatGPTable",
    "action": {
        "default_popup": "popup.html",
        "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"
            ]
        }
    ]
}