ChatGPTable

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

Apa itu ChatGPTable?

ChatGPTable adalah ekstensi Chrome yang dikembangkan oleh xide.projext, dan fitur utamanya adalah "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ChatGPTable

Unduh file ekstensi ChatGPTable dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama ChatGPTable ChatGPTable
ID jboebkcdfhknhklkombfhpflpoaebpnk
URL Resmi https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk
Deskripsi A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Ukuran File 119 KB
Jumlah Instalasi 48
Versi Saat Ini 0.2.0
Terakhir Diperbarui 2023-03-21
Tanggal Publikasi 2023-03-21
Penilaian 5.00/5 Total 1 Penilaian
Pengembang xide.projext
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://chatgptable.xideprojext.xyz/
URL Halaman Bantuan https://chatgptable.xideprojext.xyz/
Bahasa yang Didukung 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"
            ]
        }
    ]
}