ChatGPTable

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

ChatGPTable क्या है?

ChatGPTable xide.projext द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPTable एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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