ChatGPTable

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

Qu'est-ce que ChatGPTable ?

ChatGPTable est une extension Chrome développée par xide.projext, et sa fonction principale est "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ChatGPTable

Téléchargez les fichiers d'extension ChatGPTable au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

https://chatgptable.xideprojext.xyz/                    

Informations de Base sur l'Extension

Nom ChatGPTable ChatGPTable
ID ammbkfinlagkifoanpbmkiglplfjogpf
URL Officiel 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
Taille du Fichier 78.69 KB
Nombre d'Installations 190
Version Actuelle 0.1.8
Dernière Mise à Jour 2023-03-19
Date de Publication 2023-03-14
Évaluation 5.00/5 Total 4 Évaluations
Développeur xide.projext
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://chatgptable.xideprojext.xyz/
URL de la Page d'Aide https://chatgptable.xideprojext.xyz/
Langues Prises en Charge 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"
            ]
        }
    ]
}