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"
            ]
        }
    ]
}