ChatGPTable

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

Cos'è ChatGPTable?

ChatGPTable è un'estensione di Chrome sviluppata da xide.projext, e la sua funzione principale è "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPTable

Scarica i file di estensione ChatGPTable in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome ChatGPTable ChatGPTable
ID jboebkcdfhknhklkombfhpflpoaebpnk
URL Ufficiale https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk
Descrizione A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Dimensione del File 119 KB
Conteggio Installazioni 48
Versione Corrente 0.2.0
Ultimo Aggiornamento 2023-03-21
Data di Pubblicazione 2023-03-21
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore xide.projext
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://chatgptable.xideprojext.xyz/
URL della Pagina di Aiuto https://chatgptable.xideprojext.xyz/
Lingue Supportate 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"
            ]
        }
    ]
}