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

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

https://chatgptable.xideprojext.xyz/                    

Informazioni di Base sull'Estensione

Nome ChatGPTable ChatGPTable
ID ammbkfinlagkifoanpbmkiglplfjogpf
URL Ufficiale https://chromewebstore.google.com/detail/chatgptable/ammbkfinlagkifoanpbmkiglplfjogpf
Descrizione A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Dimensione del File 78.69 KB
Conteggio Installazioni 190
Versione Corrente 0.1.8
Ultimo Aggiornamento 2023-03-19
Data di Pubblicazione 2023-03-14
Valutazione 5.00/5 Totale 4 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-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"
            ]
        }
    ]
}