ChatGPTable

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

ChatGPTable là gì?

ChatGPTable là một tiện ích mở rộng Chrome được phát triển bởi xide.projext, và tính năng chính của nó là "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPTable

Tải xuống các tệp mở rộng ChatGPTable dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPTable ChatGPTable
ID jboebkcdfhknhklkombfhpflpoaebpnk
URL Chính Thức https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk
Mô tả A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Kích Thước Tệp 119 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2023-03-21
Ngày Phát Hành 2023-03-21
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển xide.projext
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://chatgptable.xideprojext.xyz/
URL Trang Trợ Giúp https://chatgptable.xideprojext.xyz/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}