ChatGPTable

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

Vad är ChatGPTable?

ChatGPTable är en Chrome-tillägg utvecklad av xide.projext, och dess huvudfunktion är "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".

Tilläggsskärmbilder

screenshot

Ladda ner ChatGPTable-förlängningens CRX-fil

Ladda ner ChatGPTable-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn ChatGPTable ChatGPTable
ID jboebkcdfhknhklkombfhpflpoaebpnk
Officiell webbadress https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk
Beskrivning A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Filstorlek 119 KB
Antal Installationer 48
Aktuell Version 0.2.0
Senast Uppdaterad 2023-03-21
Publiceringsdatum 2023-03-21
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare xide.projext
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://chatgptable.xideprojext.xyz/
Hjälpsida URL https://chatgptable.xideprojext.xyz/
Stödda Språk 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"
            ]
        }
    ]
}