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

                        1. Easy to convert HTML table of ChatGPT response to markdown table
2. Put anywhare you want markdown table 

https://chatgptable.xideprojext.xyz/                    

Extension Basic Information

Name ChatGPTable ChatGPTable
ID ammbkfinlagkifoanpbmkiglplfjogpf
Official URL https://chromewebstore.google.com/detail/chatgptable/ammbkfinlagkifoanpbmkiglplfjogpf
Description A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
File Size 78.69 KB
Installation Count 190
Current Version 0.1.8
Last Updated 2023-03-19
Publish Date 2023-03-14
Rating 5.00/5 Total 4 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-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"
            ]
        }
    ]
}