ChatGPTable
A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Wat is ChatGPTable?
ChatGPTable is een Chrome-extensie ontwikkeld door xide.projext, en de belangrijkste functie is "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPTable
Download ChatGPTable-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
1. Easy to convert HTML table of ChatGPT response to markdown table 2. Put anywhare you want markdown table https://chatgptable.xideprojext.xyz/
Basisinformatie over de Extensie
Naam | ChatGPTable |
ID | ammbkfinlagkifoanpbmkiglplfjogpf |
Officiële URL | https://chromewebstore.google.com/detail/chatgptable/ammbkfinlagkifoanpbmkiglplfjogpf |
Beschrijving | A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images |
Bestandsgrootte | 78.69 KB |
Aantal Installaties | 190 |
Huidige Versie | 0.1.8 |
Laatst Bijgewerkt | 2023-03-19 |
Publicatiedatum | 2023-03-14 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | xide.projext |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://chatgptable.xideprojext.xyz/ |
Help Pagina-URL | https://chatgptable.xideprojext.xyz/ |
Ondersteunde Talen | 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" ] } ] } |