ChatGPTable

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

What is ChatGPTable?

ChatGPTable is a Chrome extension developed by xide.projext, and its main feature is "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".

Extension Screenshots

screenshot

Download ChatGPTable Extension CRX File

Download ChatGPTable extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name ChatGPTable ChatGPTable
ID jboebkcdfhknhklkombfhpflpoaebpnk
Official URL https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk
Description A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
File Size 119 KB
Installation Count 48
Current Version 0.2.0
Last Updated 2023-03-21
Publish Date 2023-03-21
Rating 5.00/5 Total 1 Ratings
Developer xide.projext
Email [email protected]
Payment Type free
Extension Website https://chatgptable.xideprojext.xyz/
Help Page URL https://chatgptable.xideprojext.xyz/
Supported Languages 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"
            ]
        }
    ]
}