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