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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}